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

:root {
  --navy: #0b1f44;
  --navy-deep: #081730;
  --gold: #d4a13b;
  --gold-light: #e8c069;
  --ink: #0b1f44;
  --muted: #5b6679;
  --paper: #ffffff;
  --paper-alt: #f4f6f9;
  --line: #e2e6ed;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.92) 0%, rgba(5, 10, 20, 0.75) 30%, rgba(5, 10, 20, 0.25) 60%, rgba(5, 10, 20, 0) 100%),
    url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg-mobile {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* NAVBAR */
.navbar {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

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

  padding: 28px 60px;

  transition: .35s ease;

  background: transparent;
}

.navbar.scrolled {

  background: var(--navy);
  padding: 18px 60px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

}

 /* ---------------------------------------------------------------------------------------------- */
 .logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-image{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo-img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-main{
  font-size:26px;
  font-weight:800;
  letter-spacing:1px;
  color:#f2a818;
}

.logo-sub{
  font-size:12px;
  font-weight:600;
  letter-spacing:4px;
  color:#f2a818;
}

@media (max-width:768px){

  .hero-bg-mobile{

    margin-top: 83px !important;
  }

  .logo{
      gap:10px;
  }

  .logo-img{
      width:55px;
      height:55px;
  }

  .logo-main{
      font-size:18px;
  }

  .logo-sub{
      font-size:10px;
      letter-spacing:2px;
  }

}

 /* --------------------------------------------------------------------------------------- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 38px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
}

.nav-links a.active {
  color: #f2a818;
  border-bottom: 2px solid #f2a818;
}

.btn-book {
  background: #f2a818;
  color: #14181f;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width:768px) {


  .logo {

    margin-left: -20px;
  }

  .btn-book {
    margin-left: 10px;

  }


}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 1px;

  margin-bottom: 18px;
}

.hero-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: #f2a818;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 6px;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn-outline {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-fill {
  background: #f2a818;
  color: #14181f;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    background: #0a0e16;
  }

  .hero-bg-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .navbar {
    padding: 16px 20px;
  }

  .hero-content {
    padding: 28px 24px 40px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-book {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* STATS SECTION--------------------------------------------------------------------------------------------------- */
.stats {
  display: flex;
  background: var(--navy-deep);
  padding: 30px 40px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #7c8aa8;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-value-sm {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

.stat-unit {
  font-size: 13px;
  color: #7c8aa8;
}

@media (max-width: 1000px) {
  .stats {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 33.333%;
    border-right: none;
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .stat {
    flex: 1 1 50%;
  }
}

/* --------------------------------------------------------------------------------------------------------- */
/* ABOUT SECTION */
.about {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 70px 60px;
  background: #fff;
  overflow: hidden;
}

.about-text {
  max-width: 700px;
}

.about-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 14px;
}

.about-underline {
  width: 50px;
  height: 3px;
  background: #f2a818;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6478;
}

.about-images {
  display: flex;
  gap: 18px;
  min-width: 0;
}

.about-images img {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .about {
    padding: 50px 24px;
  }

  .about-images {
    flex-direction: column;
  }

  .about-images img {
    height: 220px;
  }
}

/* ------------------------------------------------------------------------------------------------------------ */
/* PREMIUM FEATURES */
.features {
  background: #f4f6f9;
  padding: 70px 60px;
  text-align: center;
}

.features h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0a0e1a;
  margin-bottom: 14px;
}

.features-underline {
  width: 50px;
  height: 3px;
  background: #f2a818;
  margin: 0 auto 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0a0e1a;
  margin-bottom: 18px;
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4a5468;
  line-height: 1.5;
  margin-bottom: 16px;
}

.feature-card li:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

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

@media (max-width: 600px) {
  .features {
    padding: 50px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------------------------- */
/*=====================================================
    STRATEGIC CONNECTIVITY
=====================================================*/

.connectivity {
  background: #eef0f3;
  padding: 70px 0;
}

.connectivity-content {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
}

/* LEFT */

.connectivity-left {
  padding: 0 60px;
}

.connectivity-left h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 14px;
}

.section-line {
  width: 48px;
  height: 4px;
  background: #f2a818;
  margin-bottom: 35px;
}

.connectivity-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.connectivity-left li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #39455b;
}

.connectivity-left li:last-child {
  margin-bottom: 0;
}

.connectivity-left li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #d9a326;
  font-size: 15px;
  font-weight: bold;
}

/* RIGHT SIDE */

.connectivity-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.connectivity-right img {
  width: 100%;
  max-width: 100%;
  /* Adjust if needed */
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/*==========================
      Tablet
===========================*/

@media (max-width:991px) {

  .connectivity {
    padding: 60px 20px;
  }

  .connectivity-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .connectivity-left {
    padding: 0;
  }

  .connectivity-left h2 {
    font-size: 34px;
  }

  .connectivity-left li {
    font-size: 16px;
  }

  .connectivity-right {
    height: 420px;
  }

}

/*==========================
      Mobile
===========================*/

@media (max-width:768px) {

  .connectivity {
    padding: 50px 15px;
  }

  .connectivity-left h2 {
    font-size: 28px;
  }

  .section-line {
    margin-bottom: 25px;
  }

  .connectivity-left li {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .connectivity-right {
    height: 180px;
  }

}

/* ------------------------------------------------------------------------------ */
/*==================================================
        COMMERCIAL TERMS
==================================================*/

.commercial-terms {
  background: #f3f5f8;
  padding: 50px 0;
}

.commercial-terms .container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* Heading */

.terms-heading {
  text-align: center;
  margin-bottom: 55px;
}

.terms-heading h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 14px;
}

.terms-heading span {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #d8a42d;
}

/* Grid */

.terms-grid {

  display: grid;

  grid-template-columns: repeat(7, 1fr);

  gap: 18px;

}

/* Card */

.term-box {

  background: #fff;

  border: 1px solid #dfe3ea;

  border-radius: 8px;

  min-height: 170px;

  padding: 28px 18px;

  text-align: center;

  transition: .35s;

}

.term-box:hover {

  transform: translateY(-6px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

/* Icon */

.term-icon {

  font-size: 22px;

  margin-bottom: 18px;

  color: #041b4a;

}

/* Small Heading */

.term-box h6 {

  font-size: 13px;

  font-weight: 700;

  color: #5e6982;

  letter-spacing: .4px;

  margin-bottom: 18px;

  text-transform: uppercase;

}

/* Main Value */

.term-box h3 {

  font-size: 22px;

  font-weight: 800;

  color: #041b4a;

  margin-bottom: 8px;

}

/* Bottom Text */

.term-box p {

  font-size: 13px;

  font-weight: 600;

  color: #5e6982;

  line-height: 1.5;

}

/*==========================
      Laptop
==========================*/

@media(max-width:1200px) {

  .terms-grid {

    grid-template-columns: repeat(4, 1fr);

  }

}

/*==========================
      Tablet
==========================*/

@media(max-width:991px) {

  .commercial-terms {

    padding: 0px 0px;

  }

  .terms-heading h2 {

    font-size: 32px;

  }

  .terms-grid {

    grid-template-columns: repeat(3, 1fr);

  }

}

/*==========================
      Mobile
==========================*/

@media(max-width:767px) {

  .commercial-terms {

    padding: 50px 15px;

  }

  .terms-heading {

    margin-bottom: 35px;

  }

  .terms-heading h2 {

    font-size: 26px;

    line-height: 1.4;

  }

  .terms-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

  }

  .term-box {

    min-height: 165px;

    padding: 22px 15px;

  }

  .term-icon {

    font-size: 20px;

  }

  .term-box h6 {

    font-size: 12px;

  }

  .term-box h3 {

    font-size: 20px;

  }

  .term-box p {

    font-size: 12px;

  }

}

/* ------------------------------------------------------------------------------------------ */
/*==================================================
        ENQUIRY SECTION
==================================================*/

.enquiry-section {
  background: #041625;
  padding: 90px 0;
}

.enquiry-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.section-tag {

  color: #f2a818;
  font-weight: 700;
  letter-spacing: 1px;

}
 /* LEFT SECTION */

.enquiry-left{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.section-tag{
  color:#f2a818;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.enquiry-left h2{
  font-size:44px;
  font-weight:800;
  color:#fff;
  margin:15px 0;
  line-height:1.2;
}

.enquiry-left p{
  color:#d6dce7;
  line-height:1.8;
  margin-bottom:30px;
  font-size:16px;
}

/* IMAGE */

.enquiry-image-box{
  width:100%;
  border-radius:10px;
  overflow:hidden;
  margin-top:10px;
}

.enquiry-image{
  width:100%;
  height:350px;
  object-fit:cover;
  display:block;
  border-radius:10px;
}



 
/* RIGHT */

.enquiry-right {

  background: #fff;
  padding: 40px;
  border-radius: 10px;

}

.form-row {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

}

.form-group {

  margin-bottom: 20px;

}

.form-group label {

  display: block;
  margin-bottom: 8px;
  font-weight: 600;

}

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;
  padding: 14px 16px;

  border: 1px solid #ddd;
  border-radius: 6px;

  font-size: 15px;

  outline: none;

}

.form-group textarea {

  resize: vertical;

}

.enquiry-btn {

  width: 100%;

  padding: 16px;

  border: none;

  background: #f2a818;

  color: #041625;

  font-size: 16px;

  font-weight: 700;

  border-radius: 6px;

  cursor: pointer;

  transition: .3s;

}

.enquiry-btn:hover {

  background: #dea013;

}

/*=========================
    Responsive
=========================*/

@media(max-width:992px) {

  .enquiry-container {

    grid-template-columns: 1fr;

  }

}

@media(max-width:768px) {

  .enquiry-section {

    padding: 70px 20px;

  }

  .enquiry-left h2 {

    font-size: 30px;

  }

  .form-row {

    grid-template-columns: 1fr;

  }

  .enquiry-right {

    padding: 25px;

  }

}

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

/* ===== CONTACT / FOOTER ===== */
.contact {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  align-items: center;
}

.contact-photo {
  height: 230px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* fills the section */
}

.contact-mid {
  padding: 30px 20px;
}

.contact-mid .brandline {
  color: var(--gold);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-mid .sub {
  font-size: 13px;
  color: #c4cee0;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.contact-mid .sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.contact-mid ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  margin-bottom: 10px;
  color: #e3e8f2;
}

.contact-mid ul li .ic {
  color: var(--gold-light);
  width: 16px;
  text-align: center;
}

.contact-right {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.warehouse-glyph {
  width: 90px;
  height: 70px;
}

.footer-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .l1 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.footer-brand .l2 {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #c4cee0;
  font-weight: 600;
}

.footer-copy {
  font-size: 11px;
  color: #8b97b3;
  text-align: right;
}


/*==================================================
    CONTACT & FOOTER RESPONSIVE
==================================================*/


.contact-mid ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-mid ul li a:hover {
  color: #f4b400; /* Change to your theme color */
}



@media (max-width: 768px) {


  .enquiry-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:10px;
  }

  /* CONTACT */

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    width: 100%;
    height: 240px;
    order: 1;
  }

  .contact-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .contact-mid {
    order: 2;
    padding: 30px 20px;
    text-align: center;
  }

  .contact-mid .sub::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-mid ul {
    padding: 0;
    margin: 20px 0 0;
  }

  .contact-mid ul li {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .contact-right {
    order: 3;
    padding: 20px 20px 35px;
  }

  .warehouse-glyph {
    width: 70px;
    height: 60px;
  }

  .contact-right .btn {
    width: 100%;
    max-width: 300px;
  }

  /* FOOTER */

  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
  }

  .footer-links li {
    width: 45%;
    justify-content: center;
    font-size: 12px;
  }

  .footer-copy {
    text-align: center;
  }

}