:root {
      --primary-font: 'Be Vietnam Pro', sans-serif;
      --montira-brown: #094776;
      --base-color: #495e6e;
      --nav-height: 80px;
    }
    * { box-sizing: border-box; }
    body { font-family: var(--primary-font); overflow-x: hidden; }

     /* Apply Audiowide only for headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', sans-serif;
  }

    /* Navbar (transparent by default) */
.navbar-custom {
  height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

/* Solid style when scrolled */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.5);      /* change to #1a1a1a for solid */
  backdrop-filter: blur(6px);          /* optional glass‑blur */
  box-shadow: 0 2px 6px rgba(0,0,0,);/* subtle drop‑shadow */
}

/* Brand + links stay readable */
.navbar-brand img { height: 80px; }
.navbar-nav .nav-link {
  text-transform: none !important;
  color: #fff !important;
  font-weight: 500;
}
/* =================  Mobile navbar dropdown  ================= */
@media (max-width: 991.98px) {          /* Bootstrap lg breakpoint */
  .navbar-custom .navbar-collapse {
    position: absolute;                 /* overlay on banner   */
    top: var(--nav-height);             /* starts below navbar */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);     /* dark semi‑transparent bg */
    padding: 1rem 1.25rem;
  }

  .navbar-custom .nav-link {
    color: #094776 !important;             /* good contrast      */
  }
}

/* 1. Base link styling (edit colours to suit) */
.navbar .nav-link{
  position: relative;          /* needed for the ::after */
  font-weight: 400;            /* matches the mock‑up */
  color: #094776 !important;
  padding: .25rem 1rem;
  text-decoration: none;       /* kill default underline */
}

/* 2. The underline */
.navbar .nav-link::after{
  content: '';
  position: absolute;
  left: 50%;                   /* start from the centre … */
  transform: translateX(-50%); /* … and truly centre it  */
  bottom: -4px;                /* distance below text    */
  width: 0;                    /* collapsed by default   */
  height: 2px;
  background: #094776;          /* Montira brown */
  transition: width .35s ease; /* smooth grow/shrink      */
}

/* 3. Show the line on hover OR when active */
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  width: 48px;                 /* pick any length you like */
}


/* Hide / show the two icons based on Bootstrap's .collapsed state */
.navbar-toggler .toggler-icon-close { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-open  { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-close { display: inline-block; }

/* Keep icons white for dark / transparent bg */
.toggler-icon-open,
.toggler-icon-close {
  color: #000;
}

/* ===================== Navbar Scroll Color Transition ===================== */

/* Default link color (before scroll) */
.navbar-custom .nav-link {
  color: #094776 !important;
}

/* Underline color before scroll */
.navbar-custom .nav-link::after {
  background: #094776;
}

/* When navbar is scrolled — switch to white links */
.navbar-scrolled .nav-link {
  color: #fff !important;
}

/* Underline also turns white when scrolled */
.navbar-scrolled .nav-link::after {
  background: #fff;
}

/* Optional: smooth color transition */
.navbar-custom .nav-link,
.navbar-custom .nav-link::after {
  transition: color 0.3s ease, background-color 0.3s ease;
}


    /* Hero */
    .hero-caption{position:relative;z-index:5;text-align:center;color:#fff;padding-top:var(--nav-height);}
    .hero-caption h1{font-size:clamp(1.8rem,4vw+0.5rem,3.2rem);font-weight:800;line-height:1.25;}
    .hero-caption .subline{font-size:.9rem;letter-spacing:1.2px;text-transform:uppercase;}
    .btn-cta{background:var(--montira-brown);border:none;padding:.6rem 2.2rem;font-weight:600;font-size:.9rem; margin-top: -165px;}
    .price-tag{position:absolute;right:4%;bottom:10%;z-index:4;font-weight:700;font-size:1.25rem;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);}

    @media (max-width:767.98px){.navbar-brand img{height:65px}.price-tag{font-size:1rem;right:6%;bottom:12%}}

  #bannerCarousel {
  position: relative;
  z-index: 1000;
  margin-top: 1px; /* ✅ perfect visual offset (slightly below navbar) */
  overflow: hidden;
  width: 100%;
}

/* Banner image fits perfectly inside */
.carousel-item {
  height: auto; /* auto height prevents clipping */
}
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}


    /* ---------------- INTRO SECTION ---------------- */
    #intro{background:var(--pattern) #f9f9f9; padding-top: 0 !important; padding-bottom: 0 !important;}
    #intro .intro-wrapper{max-width:1200px;margin-inline:auto;}
    #intro .intro-copy h2{font-weight:700;font-size:1.75rem;}
    #intro .intro-copy h6{font-weight:600;font-size:.95rem;}
    #intro .intro-copy p{font-size:.95rem;line-height:1.65;max-width:530px;}
    #intro .palm-wrap{position:relative;text-align:center;}
    #intro .palm-img{max-width:480px;width:100%;}
    @media(max-width:991.98px){#intro .intro-copy{text-align:center}#intro .intro-copy p{margin-inline:auto}#intro .palm-img{max-width:340px;margin-top:2.5rem}}
    /* remove the bottom padding that creates the gap */
#intro {
  padding-bottom: 0 !important;
}

/* reduce top padding so the sections touch neatly */
#highlights .container {
  padding-top: 3rem;   /* or 0 if you want it completely flush */
  height: 100vh;
}

.border-bottom, .border-top, .border-start, .border-end {
  border-color: #333 !important;
}
.row.g-0 {
  border-left: none !important;
  border-right: none !important;
}

#highlights .row.g-0 > div {
  border: none !important;
  border-bottom: 1px solid #333 !important;
}

#highlights .row.g-0 > div:last-child {
  border-bottom: none !important;
}


#highlights .row.g-0 > div:nth-child(2n) {
  border-right: 1px solid #333 !important;
}


    /* Enquiry Modal */
    .modal-header{border:none}
    .form-control, .form-select{border-radius:.4rem}
    .otp-input{letter-spacing:8px;text-align:center;font-size:1.5rem;}

    

input[type='checkbox'] {
  float: left;
  width: 20px;
}
input[type='checkbox'] + label {
  display: block;
  font-family: 'Courier New', monospace;
  font-size:12px;
  color: #999999;
  text-align: left;
}
.section-heading {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #666;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Main section */
.masterplan-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Header Section (Dark Blue Background) */
.masterplan-header {
  background-color: #094776; /* Use your brand's dark blue */
  background-image: url('images/pattern-bg.png'); /* Optional subtle pattern */
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 60px 20px 40px;
  color: #fff;
}

/* Main Heading */
.masterplan-header h2 {
  font-family: "The Last Shuriken", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Subheading */
.masterplan-header p {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin: 0;
  color: #d9d9d9;
}

/* Masterplan Image */
.masterplan-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.masterplan-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .masterplan-header {
    padding: 40px 15px 25px;
  }

  .masterplan-header h2 {
    font-size: 32px;
  }

  .masterplan-header p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .masterplan-header {
    padding: 30px 10px 20px;
  }

  .masterplan-header h2 {
    font-size: 26px;
  }

  .masterplan-header p {
    font-size: 13px;
  }

  .masterplan-image img {
    border-radius: 0;
  }
}

.why-section {
  position: relative;
  background: #fff; /* keep white background */
  text-align: center;
  width: 100%;
}

.why-section .content {
  max-width: 900px;
  margin: 0 auto;
}

.why-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.why-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.why-section .hill-bg {
  background: url("images/about.jpg") no-repeat center bottom;
  background-size: cover;   /* makes it stretch full width */
  height: 250px;            /* adjust height to match Figma */
  width: 100%;              /* ensures it spans the full screen */
}

/* .masterplan-img {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
} */

.enquire-btn {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 20px;
  font-size: 0.95rem;
  border-radius: 4px;
}

.specifications-section img.object-cover {
  object-fit: cover;
  height: 100%;
  max-height: 450px;
}

.bg-burnt {
  background-color: #094776;
}

.specifications-list {
  font-size: 0.95rem;
  line-height: 1.8;
}

.specifications-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.spec-icon {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-accordion-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #272864;
  text-align: center;
  margin-bottom: 30px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  background: #fff;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  color: #272864;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f0f0f5;
}

.accordion-icon {
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: #272864;
}

.accordion-content {
  display: none;
  padding: 15px 25px 25px;
  background: #fff;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion-content p {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Active state */
.accordion-item.active .accordion-content {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .accordion-header {
    font-size: 16px;
  }
}

.footer-section {
  background-color: #094776;
  font-size: 0.92rem;
  color: #333;
}

.footer-logo {
  width: 70px;
}

.footer-links li {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links li:hover {
  color: #272864;
}

.footer-social img {
  width: 24px;
  margin-left: 10px;
  /* filter: grayscale(100%); */
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: none;
}

.footer-partner {
  height: 103px;
}

.btn-burnt {
  background-color: #094776;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 0.9rem;
}

.btn-burnt:hover {
  background-color: #094776;
}

.footer-form {
  gap: 10px;
  flex-wrap: nowrap;
}

.footer-input {
  padding: 6px 12px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  /* border-radius: 4px; */
  width: 150px;
  max-width: 100%;
}

.footer-btn {
  background-color: #094776;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 0.9rem;
  /* border-radius: 4px; */
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-btn:hover {
  background-color: #094776;
}

.montira-theme-section {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.top-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.content-block {
  background-color: #094776; /* earthy brown */
  color: white;
  padding: 60px 20px;
}

.content-block p {
  margin: 20px auto;
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6;
}

.palm-icon {
  margin-top: 40px;
  width: 40px;
  height: auto;
}
@media (max-width: 768px) {
  .content-block {
    padding: 40px 15px;
  }

  .content-block p {
    font-size: 16px;
  }
}

.montira-story-section {
  font-family: 'Poppins', sans-serif;
  color: white;
}

.story-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.story-content {
  background-color: #094776;
  padding: 60px 20px;
  text-align: center;
}

.logo-meaning-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.montira-logo {
  width: 200px;
  height: auto;
}

.meaning-text p {
  margin: 5px 0;
  font-size: 14px;
  color: #f8e8d6;
  text-align: left;
}

.story-heading {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 20px;
}

.story-content p {
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.6;
  font-size: 16px;
}

.decorative-icon img {
  margin-top: 40px;
  width: 50px;
  height: auto;
}
@media (max-width: 768px) {
  .logo-meaning-row {
    flex-direction: column;
    text-align: center;
  }

  .meaning-text p {
    text-align: center;
  }
}

/* General */
section {
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

/* About Rare Earth */
.rare-earth-section {
  background-color: #094776;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.rare-earth-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.rare-earth-section p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {

  .rare-earth-section h2 {
    font-size: 24px;
  }
}

.booking-section {
  background-color: #f2f0ed;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.booking-text {
  flex: 1 1 50%;
  background-color: #f2f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.pattern-bg {
  background-image: url('path-to-pattern.png'); /* Optional background pattern */
  background-repeat: repeat;
  padding: 20px;
}

.pattern-bg h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.pattern-bg p {
  font-size: 15px;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.6;
}

.booking-image {
  flex: 1 1 50%;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.enquiry-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.enquiry-form input,
.enquiry-form select {
  border: none;
  border-bottom: 1px solid #888;
  border-radius: 0;
  padding: 8px 4px;
  background: transparent;
  font-size: 14px;
  width: 100%;
}

.enquiry-form input::placeholder {
  color: #666;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  outline: none;
  border-bottom: 2px solid #094776;
}

.input-full {
  flex: 1 1 100%;
}

.input-half {
  flex: 1 1 calc(50% - 8px);
}

.enquiry-button {
  text-align: center;
  flex: 1 1 100%;
}

.enquiry-button button {
  background-color: #094776;
  color: #fff;
  padding: 10px 26px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 12px;
}

.enquiry-button button:hover {
  background-color: #094776;
}

@media (max-width: 768px) {
  .input-half {
    flex: 1 1 100%;
  }
}

.modal-content {
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 65vh; /* for desktops */
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.modal-content * {
  position: relative;
  z-index: 1;
}

.modal-header,
.modal-body,
.modal-footer {
  background: transparent;
}

.modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: calc(100dvh - 200px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-content {
    height: auto;
    max-height: 90dvh;
  }

  .modal-body {
    max-height: calc(90dvh - 140px);
  }
}

@media (max-height: 600px) {
  .modal-content {
    max-height: 84dvh;
  }

  .modal-body {
    max-height: calc(84dvh - 140px);
  }
}

@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 1rem auto;
  }

  .modal-content {
    height: auto !important;
    max-height: 92vh !important;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem;
  }

  .modal-header,
  .modal-footer {
    flex-shrink: 0 !important;
    padding: 1rem 1.25rem;
  }

  .modal-body {
    overflow-y: auto !important;
    padding: 0 1.25rem;
    max-height: calc(92vh - 140px) !important;
  }

  .modal-footer button {
    margin-top: 0.75rem;
    width: 100%;
  }
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.pricing-section {
  background-color: #f2f2f2; /* light gray background */
  padding: 40px 0;
}

.pricing-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ccc;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 10px; /* Spacing inside cells */
  font-weight: 600;
  font-size: 0.95rem;
  word-wrap: break-word;
}

.pricing-table thead th,
.pricing-table tbody th {
  background-color: #004300;
  color: white;
  font-size: 1rem;
}

.table-container {
  max-width: 900px; /* Reduce total table width */
  margin: 0 auto;    /* Center align */
}

@media (max-width: 576px) {
  .pricing-table th,
  .pricing-table td {
    padding: 6px;
    font-size: 0.85rem;
  }

  .table-container {
    padding: 0 10px;
  }
}

.btn-cta {
  background: var(--montira-brown); /* use your defined variable */
  border: none;
  padding: 0.6rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:63px;
	right:6px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.table-container {
  max-width: 900px; /* Reduce total table width */
  margin: 0 auto;    /* Center align */
}

.pricing-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ccc;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 10px; /* Spacing inside cells */
  font-weight: 600;
  font-size: 0.95rem;
  word-wrap: break-word;
}

.pricing-table thead th,
.pricing-table tbody th {
  background-color: #094776;
  color: white;
  font-size: 1rem;
}

.btn-cta {
  background: var(--montira-brown); /* use your defined variable */
  border: none;
  padding: 0.6rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 40%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0,0,0,1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
}

html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px,0,0) rotate(-90deg);
    -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
}

html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%,0,0) rotate(-90deg);
    -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
	background-color: #094776; 
	color: white;	
  font-weight: 100; 
  top: -50px; 
  font-family: 'Arial';
  text-decoration: none;
}

html .njs-sticky-side.image_button_cover a:hover {
	background-color: white;
	color: black;
	border: 2px solid #acacac;
}

/* Existing styles remain the same... */

@media only screen and (max-width: 767px) {
    html .njs-sticky-side.image_button_cover {
        display: none !important;
    }
}

.button-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 1000;
}

.cta-button {
	flex: 1;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	color: white;
	transition: background-color 0.3s ease;
}

.enquire {
	background-color: var(--montira-brown);
}

.call {
	background-color: var(--base-color);
}

.mobile-section {
	display: none;
}

@media screen and (max-width: 767px) {
	.mobile-section {
		display: flex;
	}
}



#lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  background-color: white;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


.wrap {
    width: 800px;
    margin: 30px auto;
  }
#video-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* HERO root */
  .umbrella-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
  }

  /* background image layer (covers whole section) */
  .umbrella-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("images/inspiration.jpg"); /* <-- put your image here */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform-origin: center;
    will-change: transform;
    /* slight scale to avoid edge artifacts on mobile */
    transform: scale(1.02);
    filter: contrast(.96) saturate(.9);
  }

  /* dark overlay so white text reads */
  .umbrella-hero::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6,20,28,0.66) 0%, rgba(6,20,28,0.36) 28%, rgba(6,20,28,0.16) 56%, rgba(6,20,28,0.18) 100%);
    pointer-events: none;
  }

  /* content wrapper (above bg & overlay) */
  .hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1100px;
    padding: clamp(36px, 8vw, 120px) 22px;
    display:flex;
    flex-direction:column;
    gap: 18px;
    align-items:center;
    justify-content:center;
  }

  /* small pre-title (optional) */
  .hero-eyebrow {
    font-size: 15px;
    letter-spacing:1px;
    color: rgba(255,255,255,0.92);
    font-weight:600;
    text-transform:uppercase;
    opacity:0.95;
  }

  /* big headline */
  .hero-title {
    font-family: 'The Last Shuriken', 'Audiowide', system-ui, sans-serif;
    font-weight:400;
    margin: 0;
    line-height:1.02;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(28px, 6.8vw, 72px); /* responsive scaling */
    letter-spacing: 1px;
    text-shadow: 0 8px 28px rgba(2,8,12,0.55);
  }

  /* subtitle */
  .hero-sub {
    font-size: clamp(14px, 1.9vw, 20px);
    color: rgba(255,255,255,0.92);
    font-weight:600;
  }

  /* CTA pill */
  .hero-cta {
    margin-top: 6px;
  }
  .btn-cta {
    appearance:none;
    -webkit-appearance:none;
    display:inline-block;
    background: rgba(245,241,236,0.95); /* light cream like sample */
    color: #0b2b3a;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight:700;
    border: none;
    box-shadow: 0 8px 30px rgba(3,20,30,0.28);
    cursor:pointer;
    transition: transform .16s ease, box-shadow .16s ease;
    text-decoration:none;
    font-size: 16px;
  }
  .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(3,20,30,0.36); }

  /* HERO sizing by breakpoint */
  @media (min-width: 1200px) {
    .umbrella-hero { min-height: 720px; height: calc(100vh - 0px); } /* large presence */
    .hero-inner { padding-top: 120px; padding-bottom: 120px; }
  }

  @media (min-width: 768px) and (max-width:1199px) {
    .umbrella-hero { min-height: 640px; height: 72vh; }
    .hero-inner { padding-top: 80px; padding-bottom: 80px; }
  }

  @media (max-width: 767px) {
    .umbrella-hero { min-height: 520px; height: 60vh; }
    .hero-inner { padding-top: 56px; padding-bottom: 56px; }
    .hero-title { font-size: clamp(22px, 9.6vw, 40px); }
    .btn-cta { padding: 10px 18px; border-radius: 12px; }
  }

  /* reduced-motion preference */
  @media (prefers-reduced-motion: reduce) {
    .umbrella-hero::before { transition: none; transform: none; }
    .btn-cta { transition: none; }
  }
  /* Modal Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.custom-modal {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: popIn 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Heading */
.custom-modal h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

/* Input Fields */
.custom-modal input[type="text"],
.custom-modal input[type="email"],
.custom-modal input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

/* Submit Button */
.custom-modal button[type="submit"] {
  width: 100%;
  padding: 12px 0;
  background: var(--green, #2e8b57);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.custom-modal button[type="submit"]:hover {
  background: var(--light-green, #3aa76d);
}

/* Close Button */
.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Open Button */
.open-modal-btn {
  background: var(--green, #2e8b57);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.open-modal-btn:hover {
  background: var(--light-green, #3aa76d);
}

/* Animation */
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .custom-modal {
    width: 95%;
    padding: 25px 20px;
  }
}

/* Phone number row styling */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-row .col-5,
.form-row .col-7 {
  flex: 1;
}

.form-row select,
.form-row input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  appearance: none;
  background-color: #fff;
}

/* Adjust spacing in modal form */
.custom-modal .form-group {
  margin-bottom: 15px;
}

/* Make sure it looks good on mobile too */
@media (max-width: 480px) {
  .form-row {
    flex-direction: row;
    gap: 8px;
  }

  .form-row .col-5 {
    flex: 0 0 35%;
  }

  .form-row .col-7 {
    flex: 0 0 65%;
  }
}

.custom-checkbox-inline {
  display:flex;
  align-items:center;
  gap:12px;
}
.custom-checkbox-inline input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #cfcfcf;
  display: inline-block;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}
.custom-checkbox-inline input[type="checkbox"]:checked {
  background: #0f6b4d;
  border-color: #0f6b4d;
}
.custom-checkbox-inline input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 3px;
  top: -2px;
}
.custom-checkbox-inline label {
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
}