:root {
  --control-border: #e5e7eb;
  --control-focus: #26906e;
  --black: #26906e;
  --black-dark: #1a6266;
  --accent: #e67e22;
  --accent-hover: #d86f12;
  --heading: #040818;
  --text: #4b5563;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {

    font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 400;
    line-height: 1.6;

  background: #f8fafc;
  color: var(--text);
}


.premium-card {
  border: 1px solid var(--control-border);
  border-radius: 18px;
  background: var(--surface);
}

.section-title{
    font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #222;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
}

.field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.field span {
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 300;
}

.field input,
.field select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--control-border);
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.85rem;
  color: var(--heading);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--control-focus);
  box-shadow: 0 0 0 3px rgba(38, 144, 110, 0.12);
}

.field input::placeholder {
  color: #94a3b8;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.checkbox-row input {
  margin-top: 0.2rem;
  height: 1.05rem;
  width: 1.05rem;
  accent-color: var(--black);
}

.btn-black,
.btn-secondary {
  min-height: 46px;
  border-radius: 10px;
  padding: 0 1.25rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-black {
  background: #FFB300;
  color: #fff;
  border: none;
}

.btn-black:hover {
  background: var(--accent-hover);
}

.btn-black:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.btn-secondary {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--control-border);
}

.btn-secondary:hover {
  border-color: var(--black);
  color: var(--black);
}

.summary-heading {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
}

.summary-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-list dt {
  color: #64748b;
  font-size: 0.9rem;
}

.summary-list dd {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.receipt-summary {
  border: 1px solid var(--control-border);
  border-radius: 14px;
  background: #fff;
}

.receipt-header {
  background: #040818;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 14px 14px 0 0;
}

.summary-total {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
}

hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.text-muted {
  color: #64748b;
}

.text-heading {
  color: var(--heading);
}

.text-accent {
  color: var(--accent);
}

/*-----------------------------------------*/

/*=========================================
  HEADER
=========================================*/

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#000;
    height:78px;
    box-shadow:0 3px 12px rgba(0,0,0,.15);
}

.header .container{
    max-width:1400px;
    margin:auto;
    height:78px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;
}

/*=========================================
  LOGO
=========================================*/

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}

.logo img{
    height:38px;
    width:auto;
    display:block;
}

/*=========================================
  NAVIGATION
=========================================*/

.navmenu{
    flex:1;
    display:flex;
    justify-content:center;
}

.navmenu ul{

    display:flex;
    align-items:center;

    list-style:none;

    padding:0;
    margin:0;

    gap:34px;
}

.navmenu li{
    position:relative;
}

.navmenu a{

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:500;

    white-space:nowrap;

    transition:.3s;

    display:flex;
    align-items:center;

    height:78px;

    position:relative;

}

/* underline */

.navmenu a::after{

    content:"";

    position:absolute;

    bottom:20px;
    left:0;

    width:0;
    height:2px;

    background:#F4B400;

    transition:.3s;

}

.navmenu a:hover{

    color:#F4B400;

}

.navmenu a:hover::after{

    width:100%;

}

/*=========================================
  BUTTON
=========================================*/

.btn-getstarted{

    background:#fff;

    color:#000;

    text-decoration:none;

    border-radius:999px;

    padding:12px 28px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    flex-shrink:0;

}

.btn-getstarted:hover{

    background:#F4B400;

    color:#000;

}

/*=========================================
  MOBILE TOGGLE
=========================================*/

.mobile-nav-toggle{

    display:none;

}

/*=========================================
  MOBILE
=========================================*/

@media(max-width:1199px){

.mobile-nav-toggle{

    display:block;

    color:#fff;

    font-size:32px;

    cursor:pointer;

}

.btn-getstarted{

    display:none;

}

.navmenu{

    position:fixed;

    top:0;
    left:-100%;

    width:300px;

    height:100vh;

    background:#000;

    transition:.35s;

    overflow-y:auto;

    padding-top:90px;

}

.mobile-nav-active .navmenu{

    left:0;

}

.navmenu ul{

    display:block;

}

.navmenu li{

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navmenu a{

    display:block;

    height:auto;

    padding:18px 25px;

}

.navmenu a::after{

    display:none;

}

}

/*=========================================
  LARGE SCREENS
=========================================*/

@media(min-width:1200px){

.mobile-nav-toggle{

    display:none;

}

}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #070707;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: white;
  border-color: white;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb,rgb(255, 255, 255), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}