/* ============================================================
   AMERISTAR LIMITED — GLOBAL STYLESHEET
   ameristar.css
   Location: /staging/dev2/ameristar.css

   STRUCTURE:
   1.  CSS Variables (brand tokens)
   2.  Reset & Base
   3.  Typography
   4.  Global Buttons
   5.  Global Layout & Sections
   6.  Header & Navigation
   7.  Footer
   8.  WhatsApp Float Button
   9.  Newsletter Band
   10. Hero Slideshow
   11. Stats Bar
   12. Property Cards
   13. Why Invest Section
   14. YouTube Video Grid & Modal
   15. News Cards
   16. CTA Band
   17. Utility Classes
   18. Responsive / Media Queries
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES — BRAND TOKENS
   Edit only this section to change colors site-wide
   ============================================================ */

:root {
  /* ── Core brand ── */
  --color-green:        #00E676;
  --color-orange:       #FF6D00;
  --color-blue:         #2979FF;
  --color-light-blue:   #82B1FF;
  --color-yellow:       #FFD740;
  --color-navy:         #002e7a;
  --color-dark-navy:    #001440;
  --color-page-bg:      #F0F4FF;
  --color-white:        #ffffff;
  --color-text-dark:    #0D1B2A;
  --color-text-mid:     #334155;
  --color-text-light:   #94a3b8;

  /* ── Hero ── */
  --hero-bg-from:       #002e7a;
  --hero-bg-to:         #002e7a;
  --hero-heading:       #FFD740;
  --hero-subtext:       #E0F0FF;

  /* ── Header ── */
  --header-bg:          #001e57;
  --header-link:        #ffffff;
  --header-link-hover:  #FFD740;

  /* ── Buttons ── */
  --btn-primary-bg:     #FF6D00;
  --btn-primary-text:   #ffffff;
  --btn-primary-hover:  #00E676;
  --btn-secondary-bg:   #FFD740;
  --btn-secondary-text: #0D1B2A;

  /* ── Cards ── */
  --card-bg:            #ffffff;
  --card-heading:       #0D1B2A;
  --card-text:          #334155;
  --card-border-top:    #00E676;
  --card-hover-bg:      #0D1B2A;
  --card-hover-text:    #ffffff;

  /* ── Sections ── */
  --section-dark-bg:    #002e7a;
  --section-dark-text:  #E0F0FF;
  --section-alt-bg:     #E8F0FF;

  /* ── CTA band ── */
  --cta-bg-from:        #fadc00;
  --cta-bg-to:          #ee5300;

  /* ── Footer ── */
  --footer-bg:          #002e7a;
  --footer-heading:     #FFD740;
  --footer-text:        #94a3b8;
  --footer-link:        #82B1FF;
  --footer-bottom-bg:   #001440;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-page-bg);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p {
  line-height: 1.7;
  color: var(--color-text-mid);
}


/* ============================================================
   4. GLOBAL BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  letter-spacing: .3px;
  line-height: 1;
  text-align: center;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 6px 20px rgba(255,109,0,.3);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  color: #0D1B2A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,230,118,.3);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  box-shadow: 0 6px 20px rgba(255,215,64,.25);
}
.btn-secondary:hover {
  background: var(--color-green);
  color: #0D1B2A;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  padding: 11px 26px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}


/* ============================================================
   5. GLOBAL LAYOUT & SECTIONS
   ============================================================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 20px;
}

.section-light   { background: var(--color-white); }
.section-grey    { background: var(--color-page-bg); }
.section-dark    { background: var(--section-dark-bg); color: var(--section-dark-text); }
.section-alt     { background: var(--section-alt-bg); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 50px;
}
.section-title span { color: var(--color-orange); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-green));
  margin-top: 10px;
  border-radius: 2px;
}
.section-title.on-dark { color: var(--color-yellow); }
.section-title.on-dark::after {
  background: linear-gradient(90deg, var(--color-green), var(--color-blue));
}
.section-title.centered { text-align: center; }
.section-title.centered::after { margin-left: auto; margin-right: auto; }


/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */

.site-header-top {
  background: var(--color-dark-navy);
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #94a3b8;
  gap: 12px;
  flex-wrap: wrap;
}
.site-header-top a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s;
}
.site-header-top a:hover { color: var(--color-yellow); }
.header-top-left  { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.header-top-right { display: flex; gap: 16px; align-items: center; }

.site-header-main {
  background: var(--header-bg);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  min-height: 68px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  height: 42px;
  width: auto;
}
.header-logo-text { line-height: 1.2; }
.header-logo-name {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: block;
}
.header-logo-tag {
  color: var(--color-yellow);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: block;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.header-nav > li {
  position: relative;
}
.header-nav > li > a,
.header-nav > li > button {
  color: var(--header-link);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 22px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.header-nav > li > a:hover,
.header-nav > li > button:hover,
.header-nav > li.active > a {
  color: var(--header-link-hover);
}
.nav-cta {
  background: var(--color-orange);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 7px;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--color-green) !important;
  color: #0D1B2A !important;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s ease;
  z-index: 2000;
  border-top: 3px solid var(--color-green);
}
.header-nav > li:hover .dropdown,
.header-nav > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.87rem;
  color: var(--color-text-dark);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--color-page-bg);
  color: var(--color-orange);
  padding-left: 26px;
}
.dropdown-wide {
  min-width: 520px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 20px;
}
.header-nav > li:hover .dropdown-wide,
.header-nav > li:focus-within .dropdown-wide {
  transform: translateX(-50%) translateY(0);
}
.dropdown-wide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 16px;
}
.dropdown-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 8px 8px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
}
.dropdown-col a {
  padding: 7px 8px;
  font-size: 0.85rem;
}
.dropdown-col a:hover { padding-left: 14px; }
.dropdown-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  margin-top: 12px;
  border-top: 1px solid #f1f5f9;
  color: var(--color-blue) !important;
  font-weight: 700;
  font-size: 0.85rem;
}
.dropdown-view-all:hover {
  background: none !important;
  color: var(--color-orange) !important;
  padding-left: 10px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-dark-navy);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open {
  max-height: 100vh;
  padding-bottom: 16px;
}
.mobile-nav a,
.mobile-nav button {
  display: block;
  padding: 13px 24px;
  color: #fff;
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: inherit;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav button:hover { color: var(--color-yellow); background: rgba(255,255,255,.04); }
.mobile-dropdown { display: none; background: rgba(0,0,0,.2); }
.mobile-dropdown.mobile-open { display: block; }
.mobile-dropdown a { padding-left: 38px; font-size: 0.88rem; color: #94a3b8; }
.mobile-dropdown a:hover { color: var(--color-yellow); }
.mobile-cta {
  margin: 12px 24px 0;
  display: block;
  background: var(--color-orange);
  color: #fff !important;
  text-align: center;
  padding: 13px 20px !important;
  border-radius: 8px;
  font-weight: 700;
  border-bottom: none !important;
}
.mobile-cta:hover { background: var(--color-green) !important; color: #0D1B2A !important; }


/* ============================================================
   7. FOOTER
   ============================================================ */

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--color-navy), #1a3a6e);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 48px 24px;
}
.newsletter-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  color: var(--color-yellow);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.newsletter-text p {
  color: #94a3b8;
  font-size: 0.9rem;
}
.newsletter-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-fields input {
  padding: 12px 16px;
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
  width: 200px;
  transition: border-color .2s;
}
.newsletter-fields input::placeholder { color: #64748b; }
.newsletter-fields input:focus {
  outline: none;
  border-color: var(--color-green);
  background: rgba(255,255,255,.1);
}
.newsletter-fields button {
  padding: 12px 24px;
  background: var(--color-green);
  color: #0D1B2A;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.newsletter-fields button:hover { background: #00c853; transform: translateY(-2px); }
.newsletter-fields button:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.nl-message {
  margin-top: 10px;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 6px;
}
.nl-message.success { background: rgba(0,230,118,.15); color: #00E676; }
.nl-message.error   { background: rgba(255,109,0,.15);  color: #FF6D00; }

.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 38px; width: auto; }
.footer-logo-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
}
.footer-logo-tag {
  color: var(--color-yellow);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer-col > p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 20px;
}
.footer-col h4 {
  color: var(--footer-heading);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--footer-link);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--color-yellow); padding-left: 5px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--color-orange); transform: translateY(-3px); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: var(--footer-link);
  font-size: 0.87rem;
  text-decoration: none;
  display: block;
  line-height: 1.75;
  transition: color .2s;
}
.footer-contact-item a:hover { color: var(--color-yellow); }

.footer-office { margin-bottom: 18px; }
.footer-office strong {
  color: #fff;
  font-size: 0.87rem;
  display: block;
  margin-bottom: 4px;
}
.footer-office p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--footer-text);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  background: var(--footer-bottom-bg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--footer-text);
}


/* ============================================================
   8. WHATSAPP FLOAT BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}


/* ============================================================
   9. NEWSLETTER BAND
   Already covered in section 7 (footer)
   ============================================================ */


/* ============================================================
   10. HERO SLIDESHOW
   ============================================================ */

.hero-slider {
  position: relative;
  height: 44vh;
  min-height: 360px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy);
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,20,64,.25) 0%,
    rgba(0,20,64,.45) 50%,
    rgba(0,20,64,.70) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,215,64,.2);
  color: var(--color-yellow);
  border: 1px solid rgba(255,215,64,.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.slide-content h1 {
  color: var(--hero-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.85), 0 0 40px rgba(0,0,0,.5);
}
.slide-content h1 em {
  color: var(--color-green);
  font-style: normal;
  text-shadow: 0 2px 12px rgba(0,0,0,.85);
}
.slide-content p {
  color: #ffffff;
  font-size: clamp(.88rem, 1.6vw, 1rem);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
}
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 16