
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  
  --bg-cream: #FAF6EF;
  --bg-cream-alt: #F4EFE6;
  --bg-cream-card: #FFFFFF;
  
  --primary-green: #0B3022;
  --deep-green-dark: #061C13;
  --deep-green-light: #144733;
  --green-gradient: linear-gradient(135deg, #0B3022 0%, #061C13 100%);
  
  --accent-gold: #C5A059;
  --accent-gold-bright: #D4AF37;
  --accent-gold-light: #F0E2C6;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #9A7730 100%);
  
  --text-dark: #1E2522;
  --text-muted: #5A6560;
  --text-light: #F4EFE6;
  
  --border-gold: rgba(197, 160, 89, 0.35);
  --shadow-sm: 0 4px 12px rgba(11, 48, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 48, 34, 0.12);
  --shadow-lg: 0 16px 40px rgba(11, 48, 34, 0.18);
  --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary-green);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.35rem;
  line-height: 1.25;
  color: var(--primary-green);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.45);
}

.btn-green {
  background: var(--primary-green);
  color: var(--bg-cream);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-gold);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-green:hover {
  background: var(--deep-green-dark);
  color: var(--accent-gold);
  border-color: var(--accent-gold-bright);
  transform: translateY(-2px);
}

.badge-gold {
  background: rgba(197, 160, 89, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
  padding: 1rem 0;
}

.header.active {
  padding: 0.6rem 0;
  background: rgba(11, 48, 34, 0.96);
  border-bottom: 1px solid var(--accent-gold);
}

.header.active .nav-link {
  color: var(--bg-cream);
}

.header.active .header-brand img {
  filter: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  max-width: 240px;
}

.header-brand img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-green);
  color: var(--accent-gold);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--border-gold);
}

.phone-link:hover {
  background: var(--deep-green-dark);
  color: #FFFFFF;
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--primary-green);
  cursor: pointer;
}

.hero-section {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--deep-green-dark);
}

.hero-bg-layer {
  position: absolute;
  inset: -15px;
  background: url('../images/hero-embassy-kp.jpg') center/cover no-repeat;
  animation: kenBurnsBanner 24s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.92);
}

@keyframes kenBurnsBanner {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.12) translate(-1.8%, -1.2%);
  }
  100% {
    transform: scale(1.05) translate(1.2%, 0.8%);
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 28, 22, 0.88) 0%, rgba(11, 48, 34, 0.75) 50%, rgba(6, 28, 22, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 65% 35%, rgba(197, 160, 89, 0.28) 0%, transparent 65%);
  animation: pulseGlowBanner 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseGlowBanner {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.95;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInTitle 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-title span {
  color: var(--accent-gold-bright);
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(11, 48, 34, 0.88);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: floatLocationBadge 4s ease-in-out infinite alternate;
}

.hero-location-badge svg {
  color: var(--accent-gold-bright);
  flex-shrink: 0;
}

@keyframes floatLocationBadge {
  0% {
    transform: translateY(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(197, 160, 89, 0.35);
  }
}

.lead-form-card {
  background: var(--primary-green);
  color: var(--bg-cream);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding-bottom: 1rem;
}

.form-header h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.form-header h3 span {
  color: var(--accent-gold);
}

.form-header p {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.8);
}

.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-light);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(250, 246, 239, 0.5);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold-bright);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-select {
  width: 100px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  padding: 0.85rem 0.5rem;
  outline: none;
  font-size: 0.9rem;
}

.country-select option {
  background: var(--primary-green);
  color: #FFFFFF;
}

.email-error {
  color: #FF6B6B;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}

.submit-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.form-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.6);
  margin-top: 1rem;
}

.otp-container {
  display: none;
  text-align: center;
}

.otp-title {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.otp-desc {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.8);
  margin-bottom: 1.2rem;
}

.otp-input {
  letter-spacing: 0.5em;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.intro-section {
  background: var(--bg-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.intro-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-gold);
}

.intro-image-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.intro-highlight-box {
  background: #FFFFFF;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.intro-highlight-box h4 {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 0.3rem;
}

.intro-highlight-box p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.why-invest-section {
  background: var(--bg-cream-alt);
}

.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.invest-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.invest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.invest-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.invest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.invest-card:hover .invest-card-img img {
  transform: scale(1.06);
}

.invest-card-body {
  padding: 1.8rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.invest-card-num {
  position: absolute;
  top: -0.8rem;
  right: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary-green);
  opacity: 0.09;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transition: var(--transition);
}

.invest-card:hover .invest-card-num {
  color: var(--accent-gold);
  opacity: 0.22;
  transform: translateY(-2px) scale(1.05);
}

.invest-card-body h3,
.invest-card-body p,
.invest-card-body button {
  position: relative;
  z-index: 2;
}

.invest-card-body h3 {
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.invest-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.readmoretext {
  display: none;
  margin-top: 0.5rem;
}

.readmorebtn {
  background: var(--primary-green);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 1rem;
  align-self: flex-start;
  transition: var(--transition);
}

.readmorebtn:hover {
  background: var(--deep-green-dark);
  color: #FFFFFF;
  border-color: var(--accent-gold-bright);
}

.invest-card-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.invest-card-actions .readmorebtn {
  margin-top: 0;
}

.invest-card-actions .cta-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.invest-banner-row {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.banner-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-gold);
  height: 280px;
}

.banner-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 48, 34, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #FFFFFF;
}

.banner-img-overlay h4 {
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.highlights-section {
  background: var(--primary-green);
  color: var(--bg-cream);
  position: relative;
}

.highlights-section .section-title {
  color: #FFFFFF;
}

.highlights-section .section-subtitle {
  color: rgba(250, 246, 239, 0.8);
}

.highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.highlight-item-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.highlight-item-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold-bright);
}

.highlight-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.highlight-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.highlights-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.highlights-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.location-section {
  background: var(--bg-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.location-pill {
  background: rgba(11, 48, 34, 0.08);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
}

.location-media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-gold);
}

.location-media-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-nav-toggle-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.custombtn {
  background: var(--primary-green);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.custombtn:hover {
  background: var(--deep-green-dark);
  color: #FFFFFF;
}

.developer-section {
  background: var(--bg-cream-alt);
  border-top: 2px dashed var(--border-gold);
  border-bottom: 2px dashed var(--border-gold);
}

.developer-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.developer-header {
  margin-bottom: 2.5rem;
}

.developer-header h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.developer-est-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--accent-gold);
  background: var(--primary-green);
  padding: 0.4rem 1.5rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
  border: 1px solid var(--accent-gold);
}

.developer-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.developer-card-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-gold);
}

.developer-card-box h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bg-cream-alt);
}

.developer-card-box p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.developer-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.city-tag {
  background: rgba(197, 160, 89, 0.12);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.footer {
  background: var(--deep-green-dark);
  color: var(--bg-cream);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.7);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.8);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.5);
}

.mobile-section-footer {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-green);
  border-top: 2px solid var(--accent-gold);
  padding: 0.8rem 1rem;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: bottom 0.4s ease;
}

.mobile-section-footer.active {
  bottom: 0;
}

.mobile-footer-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 28, 22, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1050;
}

.popup-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1060;
  width: 90%;
  max-width: 480px;
  background: var(--primary-green);
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 2rem;
  color: #FFFFFF;
}

.popup-modal.active {
  display: block !important;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  color: var(--accent-gold);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.popup-close:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-green);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
  font-weight: 600;
}

.toast.show {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-grid, .intro-grid, .location-grid, .highlights-wrapper {
    grid-template-columns: 1fr;
  }
  .why-invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .developer-body-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .container {
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden;
  }
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
    min-height: auto;
    background: linear-gradient(135deg, rgba(6, 28, 22, 0.9) 0%, rgba(11, 48, 34, 0.8) 100%), url('../images/hero-embassy-kp.jpg') center/cover no-repeat;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-location-badge {
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
    white-space: normal;
  }
  .hero-form-wrapper {
    width: 100%;
    margin-top: 1rem;
  }
  .lead-form-card {
    padding: 1.25rem 1rem;
    max-width: 100%;
  }
  .phone-input-group {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  .country-select {
    width: 95px;
    font-size: 0.78rem;
    padding: 0.7rem 0.2rem;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-section-footer {
    display: block;
  }
  .why-invest-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .invest-banner-row {
    grid-template-columns: 1fr;
  }
  .invest-card-actions {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .invest-card-actions .readmorebtn,
  .invest-card-actions .cta-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
    flex: 1;
    text-align: center;
  }
  .float {
    bottom: 75px;
    left: 15px;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .side-popup-btn {
    display: none !important;
  }
}

.float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 100px;
  left: 25px;
  background-color: #25d366;
  color: #FFFFFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.float:hover {
  background-color: #128c7e;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.my-float {
  margin-top: 0;
  line-height: 1;
}

.side-popup-btn {
  display: block;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 99999;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.6rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1.5px solid var(--accent-gold);
  border-top: none;
  cursor: pointer;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .side-popup-btn {
    display: none !important;
  }
}

.side-popup-btn:hover {
  filter: brightness(1.15);
  box-shadow: -6px 0 30px rgba(197, 160, 89, 0.6);
}
