/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0a1128;
  --dark-gray: #1a1f2e;
  --light-gray: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --accent: #b89968;
  --border: #e5e7eb;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--light-gray);
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--text-light);
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
}
nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.contact-btn {
  padding: 10px 25px;
  background: var(--navy);
  color: var(--text-light);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-btn:hover {
  background: var(--accent);
  color: var(--navy);
}
.invest-btn {
  padding: 10px 25px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.invest-btn:hover {
  background: var(--navy);
  color: var(--text-light);
}
.hero {
  margin-top: 60px;
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/1.jpeg) right/cover no-repeat;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero .highlight {
  color: var(--accent);
  font-weight: 600;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}
.cta-primary {
  display: inline-block;
  padding: 16px 50px;
  background: var(--navy);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--navy);
}
.cta-primary:hover {
  background: transparent;
  color: var(--navy);
}
.cta-secondary {
  display: inline-block;
  padding: 16px 50px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--navy);
  margin-left: 1rem;
}
.cta-secondary:hover {
  background: var(--navy);
  color: var(--text-light);
}
.metrics {
  padding: 80px 5%;
  background: var(--text-light);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.metric-item {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.metric-value {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
section {
  padding: 100px 5%;
}
.section-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}
.about {
  background: var(--text-light);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.about-list {
  list-style: none;
  margin-top: 2rem;
}
.about-list li {
  padding: 0.8rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.about-list li::before {
  content: "\25aa";
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
}
.about-img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facilities {
  background: var(--navy);
  color: var(--text-light);
}
.facilities .section-title {
  color: var(--text-light);
}
.facilities .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.facility-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
}
.facility-card:hover {
  border-color: var(--accent);
  background: rgba(185, 153, 104, 0.05);
  transform: translateY(-8px);
}
.facility-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.facility-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.gallery {
  background: var(--light-gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 17, 40, 0.75);
  color: var(--text-light);
  padding: 1rem;
  font-size: 0.95rem;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.investment {
  background: var(--text-light);
}
.investment-content {
  max-width: 1400px;
  margin: 0 auto;
}
.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
.investment-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light-gray);
}
.investment-item h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.investment-item .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.timeline {
  background: var(--light-gray);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.timeline-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.timeline-year {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-muted);
}
.location {
  background: var(--text-light);
}
.location-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.location-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.location-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.location-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.location-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.7rem;
  color: var(--text-muted);
}
.location-map img {
  width: 100%;
  border-radius: 8px;
}
.form-section {
  background: var(--dark-gray);
  color: var(--text-light);
}
.form-section .section-title {
  color: var(--text-light);
}
.form-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-section .form-group input,
.form-section .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 0.95rem;
}
.form-section .form-group input::placeholder,
.form-section .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-submit {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--text-light);
  color: var(--navy);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-note.error {
  color: #ff9b9b;
}
.form-note.success {
  color: #9dffb0;
}
.form-agree {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.form-agree a {
  color: var(--accent);
}
footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 60px 5% 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}
.modal-card {
  background: var(--text-light);
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.modal-card.order-modal {
  max-width: 520px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}
.modal-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.modal-tabs button {
  flex: 1;
  padding: 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--light-gray);
  cursor: pointer;
  font-weight: 600;
}
.modal-tabs button.active {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}
.modal-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.modal-note.error {
  color: #b91c1c;
  margin-top: 0.75rem;
}
.modal-title {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.modal-card .form-group input,
.modal-card .form-group textarea,
.page-card .form-group input,
.page-card .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.95rem;
}
.modal-card .form-group textarea {
  resize: none;
}
.modal-card .form-group input::placeholder,
.modal-card .form-group textarea::placeholder,
.page-card .form-group input::placeholder,
.page-card .form-group textarea::placeholder {
  color: var(--text-muted);
}
.simple-header {
  position: sticky;
  top: 0;
  background: var(--text-light);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.page-shell {
  padding: 120px 5% 80px;
  min-height: 100vh;
}
.page-card {
  background: var(--text-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.page-card.wide {
  max-width: 1200px;
  margin: 0 auto;
}
.muted {
  color: var(--text-muted);
}
.muted.small {
  font-size: 0.85rem;
}
.otp-input {
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.otp-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.link-btn {
  background: transparent;
  border: none;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 2rem;
}
.dashboard-actions .button-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}
.dashboard-actions .button-row .cta-primary,
.dashboard-actions .button-row .cta-secondary {
  width: 240px;
}
.dashboard-actions .button-row .cta-secondary {
  margin-left: 0;
}
.dashboard-actions .button-row .token-btn {
  background: #d7b46a;
  border-color: #d7b46a;
  color: #1b1f2a;
}
.dashboard-actions .button-row .token-btn:hover {
  background: transparent;
  color: #d7b46a;
}
.info-card {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--light-gray);
  border: 1px solid var(--border);
}
.timeline-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.75rem;
  font-size: 0.8rem;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.doc-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--light-gray);
}
.faq {
  margin-top: 2rem;
}
.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 1024px) {
  nav {
    display: none;
  }
  .about-content,
  .location-content,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 5%;
  }
  .hero {
    height: auto;
    padding: 120px 5% 80px;
  }
  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
  .form-container {
    padding: 2rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0a1128;
  --dark-gray: #1a1f2e;
  --light-gray: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --accent: #b89968;
  --border: #e5e7eb;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--light-gray);
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--text-light);
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
}
nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.contact-btn {
  padding: 10px 25px;
  background: var(--navy);
  color: var(--text-light);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-btn:hover {
  background: var(--accent);
  color: var(--navy);
}
.invest-btn {
  padding: 10px 25px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.invest-btn:hover {
  background: var(--navy);
  color: var(--text-light);
}
.hero {
  margin-top: 60px;
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/1.jpeg) right/cover no-repeat;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero .highlight {
  color: var(--accent);
  font-weight: 600;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}
.cta-primary {
  display: inline-block;
  padding: 16px 50px;
  background: var(--navy);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--navy);
}
.cta-primary:hover {
  background: transparent;
  color: var(--navy);
}
.cta-secondary {
  display: inline-block;
  padding: 16px 50px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--navy);
  margin-left: 1rem;
}
.cta-secondary:hover {
  background: var(--navy);
  color: var(--text-light);
}
.metrics {
  padding: 80px 5%;
  background: var(--text-light);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.metric-item {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.metric-value {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
section {
  padding: 100px 5%;
}
.section-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}
.about {
  background: var(--text-light);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.about-list {
  list-style: none;
  margin-top: 2rem;
}
.about-list li {
  padding: 0.8rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.about-list li::before {
  content: "\25aa";
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
}
.about-img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facilities {
  background: var(--navy);
  color: var(--text-light);
}
.facilities .section-title {
  color: var(--text-light);
}
.facilities .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.facility-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
}
.facility-card:hover {
  border-color: var(--accent);
  background: rgba(185, 153, 104, 0.05);
  transform: translateY(-8px);
}
.facility-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.facility-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.gallery {
  background: var(--light-gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 17, 40, 0.75);
  color: var(--text-light);
  padding: 1rem;
  font-size: 0.95rem;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.investment {
  background: var(--text-light);
}
.investment-content {
  max-width: 1400px;
  margin: 0 auto;
}
.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
.investment-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light-gray);
}
.investment-item h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.investment-item .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.timeline {
  background: var(--light-gray);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.timeline-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.timeline-year {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-muted);
}
.location {
  background: var(--text-light);
}
.location-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.location-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.location-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.location-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.location-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.7rem;
  color: var(--text-muted);
}
.location-map img {
  width: 100%;
  border-radius: 8px;
}
.form-section {
  background: var(--dark-gray);
  color: var(--text-light);
}
.form-section .section-title {
  color: var(--text-light);
}
.form-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-section .form-group input,
.form-section .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 0.95rem;
}
.form-section .form-group input::placeholder,
.form-section .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-submit {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--text-light);
  color: var(--navy);
}
.form-agree {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.form-agree a {
  color: var(--accent);
}
footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 60px 5% 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}
.modal-card {
  background: var(--text-light);
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}
.modal-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.modal-tabs button {
  flex: 1;
  padding: 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--light-gray);
  cursor: pointer;
  font-weight: 600;
}
.modal-tabs button.active {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}
.modal-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.modal-card .form-group input,
.page-card .form-group input,
.page-card .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.95rem;
}
.modal-card .form-group input::placeholder,
.page-card .form-group input::placeholder,
.page-card .form-group textarea::placeholder {
  color: var(--text-muted);
}
.simple-header {
  position: sticky;
  top: 0;
  background: var(--text-light);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.page-shell {
  padding: 120px 5% 80px;
  min-height: 100vh;
}
.page-card {
  background: var(--text-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.page-card.wide {
  max-width: 1200px;
  margin: 0 auto;
}
.muted {
  color: var(--text-muted);
}
.muted.small {
  font-size: 0.85rem;
}
.otp-input {
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.otp-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.link-btn {
  background: transparent;
  border: none;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 2rem;
}
.dashboard-actions .button-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}
.info-card {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--light-gray);
  border: 1px solid var(--border);
}
.timeline-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.75rem;
  font-size: 0.8rem;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.doc-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--light-gray);
}
.faq {
  margin-top: 2rem;
}
.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 1024px) {
  nav {
    display: none;
  }
  .about-content,
  .location-content,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 5%;
  }
  .hero {
    height: auto;
    padding: 120px 5% 80px;
  }
  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
  .form-container {
    padding: 2rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
