 :root {
     --bg-dark: #050b14;
     --bg-navy: #0a1128;
     --gold: #bf953f;
     --gold-light: #fcf6ba;
     --gold-dark: #b38728;
     --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #bf953f);
     --white: #ffffff;
     --light-grey: #f8fafc;
     --text-main: #334155;
     --text-grey: #64748b;
     --text-light: #e2e8f0;
     --font-head: 'Cinzel', serif;
     --font-body: 'Manrope', sans-serif;
     --font-sig: 'Dancing Script', cursive;
     --header-height: 80px;
     --section-padding: 100px 20px;
     --max-width: 1200px;
 }

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

 body {
     font-family: var(--font-body);
     background-color: var(--white);
     color: var(--text-main);
     line-height: 1.6;
     padding-top: var(--header-height);
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 20px;
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: var(--header-height);
     background-color: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     z-index: 1000;
     display: flex;
     align-items: center;
 }

 .header-cls {
     width: 100%;
     max-width: var(--max-width);
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 20px;
 }

 .logo {
     width: 140px;
 }

 .menu-items {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 .menu-items a {
     font-size: 16px;
     font-weight: 600;
     color: var(--bg-navy);
 }

 .menu-items a:hover {
     color: var(--gold);
 }

 .menu-login {
     color: rgb(9, 9, 9) !important;
     padding: 8px 10px;
     border: 1px solid;
     border-radius: 50px;
     display: flex;
     gap: 10px;
     transition: all 0.3s ease-in;
 }

 .menu-login:hover {
     background-color: var(--gold-dark);
     color: var(--white) !important;
     border-radius: 0;
 }

 .home-nav {
     position: relative;
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .home-btn {
     background: transparent;
     border: none;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dropdown-icon {
     font-size: 20px;
     cursor: pointer;
     color: var(--gold);
     transition: 0.3s ease;
 }

 .dropdown-icon.rotate {
     transform: rotate(180deg);
 }

 .home-select {
     position: absolute;
     top: 25px;
     left: 0;
     background: black;
     border: 1px solid #ddd;
     border-radius: 10px;
     min-width: 150px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     display: none;
     z-index: 100;
 }

 .home-select.show {
     display: block;
 }

 .home-select a {
     display: block;
     padding: 10px 14px;
     color: #ffffff !important;
     text-decoration: none;
 }

 .hamburger,
 .btn-close {
     display: none;
 }

 @media (max-width: 900px) {
     .menu-items {
         position: fixed;
         top: 0;
         right: -100%;
         width: 250px;
         height: 100vh;
         background: var(--bg-dark);
         flex-direction: column;
         align-items: flex-start;
         padding: 80px 30px;
         transition: 0.4s ease;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

     .menu-items.show {
         right: 0;
     }

     .menu-items a {
         color: var(--white);
         width: 100%;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding-bottom: 10px;
     }

     .hamburger {
         display: block;
         font-size: 28px;
         cursor: pointer;
         color: var(--bg-navy);
     }

     .btn-close {
         display: block;
         position: absolute;
         top: 20px;
         right: 20px;
         color: var(--white);
         font-size: 24px;
         cursor: pointer;
     }

     .dropdown-icon {
         color: white !important;
         font-size: 30px !important;
     }

     .menu-login {
         color: var(--white) !important;
         border: none;
     }
 }

 .site-footer {
     background-color: var(--bg-dark);
     color: var(--white);
     padding-top: 80px;
     font-size: 0.95rem;
     overflow-x: hidden;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
     gap: 40px;
     padding-bottom: 60px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .brand-col .footer-logo {
     font-family: var(--font-head);
     font-size: 2rem;
     font-weight: 700;
     color: var(--white);
     display: inline-block;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: 0.3s;
     color: var(--white);
 }

 .social-icon:hover {
     background: var(--gold);
     color: var(--bg-dark);
     transform: translateY(-3px);
 }

 .footer-heading {
     color: var(--gold);
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 25px;
     display: block;
     font-weight: 700;
 }

 .footer-links a {
     color: var(--text-grey);
     display: inline-block;
     margin-bottom: 10px;
 }

 .footer-links a:hover {
     color: var(--gold);
     transform: translateX(5px);
 }

 .newsletter-form {
     position: relative;
 }

 .newsletter-input {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--white);
     border-radius: 4px;
     outline: none;
 }

 .newsletter-input:focus {
     border-color: var(--gold);
 }

 .newsletter-btn {
     position: absolute;
     top: 5px;
     right: 5px;
     height: 38px;
     width: 40px;
     background: var(--gold);
     border: none;
     border-radius: 3px;
     cursor: pointer;
     color: var(--bg-dark);
     font-weight: bold;
 }

 .footer-bottom {
     background-color: #02060c;
     padding: 25px 0;
 }

 .footer-bottom .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .bottom-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--text-grey);
     font-size: 0.85rem;
     width: 100%;
 }

 .legal-links a {
     margin-left: 20px;
     transition: 0.3s;
 }

 .legal-links a:hover {
     color: var(--gold);
 }

 @media (max-width: 968px) {
     .footer-top {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 600px) {

     .footer-top {
         grid-template-columns: 1fr;
         text-align: left;
     }

     .footer-bottom .container {
         flex-direction: column;
         gap: 15px;
     }

     .legal-links {
         margin-top: 10px;
     }

     .legal-links a {
         margin: 0 10px;
     }
     .inner-hero{
        height: 70vh !important;
     }

 }

 .inner-hero {
     position: relative;
     height: 50vh;
     min-height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     background-color: var(--bg-dark);
     margin-top: -80px;
     padding-top: 80px;
 }

 .inner-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(5, 11, 20, 0.7) 0%, rgba(5, 11, 20, 0.9) 100%);
     z-index: 1;
 }

 .inner-hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     padding: 0 20px;
 }

 .inner-hero-title {
     font-family: var(--font-head);
     font-size: 3.5rem;
     color: var(--white);
     margin-bottom: 15px;
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.2s;
 }

 .inner-hero-subtitle {
     font-family: var(--font-body);
     font-size: 1.1rem;
     color: var(--text-light);
     max-width: 600px;
     margin: 0 auto 20px auto;
     line-height: 1.6;
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.4s;
 }

 .breadcrumbs-premium {
     display: inline-block;
     padding: 8px 20px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     font-size: 0.85rem;
     color: var(--gold);
     text-transform: uppercase;
     letter-spacing: 1px;
     backdrop-filter: blur(5px);
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.6s;
 }

 .breadcrumbs-premium span {
     color: var(--text-grey);
     margin: 0 10px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .inner-hero {
         height: 40vh;
         min-height: 350px;
     }

     .inner-hero-title {
         font-size: 2.5rem;
     }
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes floatUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .section-header {
     max-width: 700px;
     margin: 0 auto 60px auto;
     text-align: center;
 }

 .section-header .eyebrow {
     color: var(--gold);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.85rem;
     display: block;
     margin-bottom: 15px;
 }

 .section-header h2 {
     color: var(--bg-navy);
     font-family: var(--font-head);
     font-size: 2.5rem;
 }


 /* Toast  */

 #toast {
     visibility: hidden;
     min-width: 260px;
     background: #333;
     color: #fff;
     text-align: center;
     border-radius: 8px;
     padding: 14px;
     position: fixed;
     left: 50%;
     bottom: 40px;
     transform: translateX(-50%);
     z-index: 9999;
     font-size: 15px;
     opacity: 0;
     transition: opacity 0.4s, bottom 0.4s;
 }

 #toast.show {
     visibility: visible;
     opacity: 1;
     bottom: 60px;
 }