/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --accent-glow: rgba(6, 182, 212, 0.15);
  --dark: #0f172a;
  --dark-secondary: #1e293b;
  --text: #475569;
  --text-light: #94a3b8;
  --heading: #0f172a;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0c4a6e 100%);
  --gradient-accent: linear-gradient(135deg, #1a56db, #06b6d4);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(26, 86, 219, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 52px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 40px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: box-shadow var(--transition);
}

.site-header:hover {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  max-height: 55px;
  transition: transform var(--transition);
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--heading);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  position: relative;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(26, 86, 219, 0.06);
}

.nav-links a.active {
  color: var(--white);
  background: var(--gradient-accent);
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--surface);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(12, 74, 110, 0.65) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  /* background: linear-gradient(to top, var(--white), transparent); */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 800px;
}

.hero h3 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.hero h2 {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 30%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Page banners (inner pages) */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 80px 20px;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  top: -200px;
  right: -100px;
}

.page-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.12), transparent 70%);
  bottom: -150px;
  left: -100px;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 800;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 8px;
  line-height: 1.8;
}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 18px auto 0;
  border-radius: 2px;
}

.half-image {
  clip-path: inset(50% 0 0 0);
  /* hides top 50%, shows bottom 50% */
}


/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-block h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.text-block h3 {
  margin-bottom: 20px;
}

.text-block p {
  margin-bottom: 18px;
  text-align: justify;
  color: var(--text);
  line-height: 1.85;
}

.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.section-image:hover {
  transform: translateY(-4px);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parallax mid-banner */
.mid-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(12, 74, 110, 0.7));
}

.mid-banner h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 42px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
}

/* Infrastructure section with bg */
.infra-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.infra-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(12, 74, 110, 0.88));
}

.infra-section .container {
  position: relative;
  z-index: 1;
}

.infra-section h4 {
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.infra-section h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 24px;
}

.infra-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  text-align: justify;
  max-width: 800px;
  line-height: 1.85;
}

/* ===== TABLES ===== */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.info-table th,
.info-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
  color: var(--white);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 25%;
}

.info-table td {
  background: var(--white);
}

.info-table tr:hover td {
  background: var(--accent-glow);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* ===== INVESTORS SECTION LIST ===== */
.investor-section {
  margin-bottom: 60px;
}

.investor-section h3 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.investor-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.investor-section h3 i {
  color: var(--primary);
  font-size: 20px;
}

.doc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.doc-list li {
  padding: 0;
}

.doc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--heading);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.doc-list a i {
  font-size: 18px;
  color: #ef4444;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.doc-list a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.25);
  transform: translateY(-2px);
}

.doc-list a:hover i {
  color: var(--white);
  transform: scale(1.1);
}

/* Shareholder info box */
.info-box {
  background: var(--gradient-card);
  border-left: 4px solid transparent;
  border-image: var(--gradient-accent) 1;
  padding: 30px 35px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 10px;
  box-shadow: var(--shadow-md);
}

.info-box p {
  margin-bottom: 10px;
  font-size: 15px;
}

.info-box strong {
  color: var(--heading);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ===== ACCORDION ===== */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.accordion-header:hover {
  background: var(--surface);
}

.accordion-header::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--text-light);
  transition: all var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
}

.accordion-item.open .accordion-header {
  background: var(--gradient-accent);
  color: var(--white);
}

.accordion-item.open .accordion-header::after {
  content: '\f077';
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accordion-body-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  transition: all var(--transition);
  background: var(--white);
}

.accordion-body-inner a i {
  color: #ef4444;
  font-size: 14px;
}

.accordion-body-inner a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.2);
  transform: translateY(-1px);
}

.accordion-body-inner a:hover i {
  color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.map-container {
  width: 100%;
  height: 420px;
  border: none;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 30px;
  font-size: 28px;
  position: relative;
  padding-bottom: 14px;
}

.contact-info h3::after,
.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.25);
}

.contact-item p {
  margin: 0;
  line-height: 1.7;
}

.contact-item strong {
  color: var(--heading);
  display: block;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--heading);
  transition: all var(--transition);
  outline: none;
  background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 86, 219, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06), transparent 70%);
  top: -300px;
  right: -200px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE ===== */

/* ---- Tablet landscape & below (≤992px) ---- */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .doc-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .investor-section {
    margin-bottom: 40px;
  }

  .map-container {
    height: 320px;
    margin-bottom: 40px;
  }

  .accordion {
    max-width: 100%;
  }
}

/* ---- Tablet portrait & below (≤768px) ---- */
@media (max-width: 768px) {

  /* -- Mobile Navigation -- */
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrapper {
    padding: 10px 16px;
  }

  .logo img {
    max-height: 45px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 16px;
    gap: 2px;
    border-top: 1px solid var(--border);
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
  }

  .nav-links a.active {
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  /* -- Hero -- */
  .hero {
    min-height: 350px;
    background-attachment: scroll;
    /* iOS fix: fixed bg doesn't work */
  }

  .hero h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero h3 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 30px 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 18px;
    margin-top: 20px;
  }

  /* -- Page Banners -- */
  .page-banner {
    min-height: 220px;
    padding: 50px 16px;
  }

  .page-banner h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .page-banner p {
    font-size: 14px;
    line-height: 1.6;
  }

  .page-banner::before {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -50px;
  }

  .page-banner::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -50px;
  }

  /* -- Mid-banner / parallax -- */
  .mid-banner {
    background-attachment: scroll;
    min-height: 200px;
  }

  .mid-banner h2 {
    font-size: 24px;
    padding: 0 16px;
  }

  /* -- Content Sections -- */
  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .text-block h4 {
    font-size: 12px;
  }

  .text-block h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .text-block p {
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }

  .section-image {
    border-radius: var(--radius);
  }

  /* -- Tables -- */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .info-table {
    min-width: 500px;
  }

  .info-table th,
  .info-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .info-table th {
    font-size: 11px;
    width: 30%;
  }

  /* -- Investors doc-list -- */
  .investor-section h3 {
    font-size: 18px;
    gap: 8px;
  }

  .investor-section h3 i {
    font-size: 16px;
  }

  .doc-list a {
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px;
  }

  .doc-list a i {
    font-size: 16px;
  }

  .info-box {
    padding: 20px 22px;
  }

  .info-box p {
    font-size: 14px;
  }

  /* -- Accordion -- */
  .accordion-header {
    padding: 16px 18px;
    font-size: 16px;
  }

  .accordion-header::after {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .accordion-body-inner {
    padding: 16px 18px;
    gap: 8px;
  }

  .accordion-body-inner a {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
    width: 100%;
  }

  /* -- Contact Page -- */
  .map-container {
    height: 250px;
    margin-bottom: 30px;
    border-radius: var(--radius);
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .contact-item {
    gap: 14px;
    margin-bottom: 22px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* -- Footer -- */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding: 50px 0 0;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .footer-contact-item p {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 12px;
  }

  /* -- Infra section with bg -- */
  .infra-section {
    padding: 60px 0;
  }

  .infra-section h3 {
    font-size: 24px;
  }

  .infra-section p {
    font-size: 14px;
    text-align: left;
  }

  /* -- Typography -- */
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }
}

/* ---- Mobile small (≤480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* -- Hero -- */
  .hero {
    min-height: 300px;
  }

  .hero h2 {
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .hero h3 {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 14px;
    gap: 6px;
  }

  /* -- Page banner -- */
  .page-banner {
    min-height: 180px;
    padding: 40px 12px;
  }

  .page-banner h1 {
    font-size: 24px;
  }

  .page-banner p {
    font-size: 13px;
  }

  /* -- Typography -- */
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  body {
    font-size: 14px;
  }

  /* -- Sections -- */
  .section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .text-block h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .text-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .text-block p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* -- Grid -- */
  .grid-2 {
    gap: 20px;
  }

  /* -- Tables -- */
  .info-table {
    font-size: 12px;
    min-width: 450px;
  }

  .info-table th {
    width: 32%;
    padding: 10px 12px;
    font-size: 10px;
  }

  .info-table td {
    padding: 10px 12px;
  }

  /* -- Investors -- */
  .investor-section {
    margin-bottom: 30px;
  }

  .investor-section h3 {
    font-size: 16px;
  }

  .doc-list a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .info-box {
    padding: 16px 18px;
  }

  .info-box p {
    font-size: 13px;
  }

  /* -- Accordion -- */
  .accordion-header {
    padding: 14px 16px;
    font-size: 14px;
  }

  .accordion-header::after {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .accordion-body-inner {
    padding: 14px 16px;
  }

  .accordion-body-inner a {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* -- Contact -- */
  .map-container {
    height: 200px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 8px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-form-wrapper {
    padding: 18px;
    border-radius: var(--radius);
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* -- Footer -- */
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-contact-item .icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 6px;
  }

  .footer-contact-item {
    gap: 10px;
    margin-bottom: 14px;
  }

  .footer-contact-item p {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 11px;
  }

  /* -- Nav adjustments -- */
  .nav-wrapper {
    padding: 8px 12px;
  }

  .logo img {
    max-height: 38px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }
}