.elementor-353 .elementor-element.elementor-element-ccffd6b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-353 .elementor-element.elementor-element-ae9e9e7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-26b23b1 *//* --- CONTACT PAGE STYLES --- */

.contact-section-container {
  background-color: var(--color-bg-white);
}

.contact-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-details-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-details-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 12px;
  display: inline-block;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item-custom {
  display: flex;
  gap: 20px;
}

.contact-detail-icon-custom {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.08);
}

.contact-detail-content-custom h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 6px;
}

.contact-detail-content-custom p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-detail-content-custom a {
  color: var(--color-navy-dark);
  font-weight: 600;
}

.contact-detail-content-custom a:hover {
  color: var(--color-primary);
}

.map-section {
  padding-bottom: 96px;
  background-color: var(--color-bg-light);
}

.map-container-custom {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg-white);
  transition: var(--transition-normal);
}

.map-container-custom:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.map-container-custom iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-success-msg-custom {
  background-color: var(--color-primary-light);
  border: 1.5px solid rgba(255, 87, 34, 0.2);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: fadeIn 0.4s ease;
}

.success-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.contact-success-msg-custom h4 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  margin-bottom: 12px;
}

.contact-success-msg-custom p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- FORM INPUT & LAYOUT STYLES --- */

.contact-form-card-custom {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 16px;
}

.form-group-custom {
  margin-bottom: 12px;
}

.form-group-custom label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.form-control-custom {
  width: 100%;
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 76px;
}

@media (max-width: 1024px) {
  .contact-grid-custom {
    gap: 40px;
  }

  .contact-details-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {

  .contact-form-card-custom {
    padding: 24px 16px;
  }

  .contact-grid-custom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-details-card {
    padding: 32px 24px;
  }

  .map-container-custom {
    height: 300px;
  }
}

@media (max-width: 480px) {

  .contact-form-card-custom {
    padding: 24px 16px;
  }

  .contact-details-card {
    padding: 24px 16px;
  }

  .map-container-custom {
    height: 260px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-50f6947 *//* =========================================================
   CONTACT PAGE STYLES
========================================================= */

.contact-section-container {
  background-color: var(--color-bg-white);
  box-sizing: border-box;
}

.contact-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* =========================================================
   CONTACT DETAILS CARD
========================================================= */

.contact-details-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  width: 100%;
}

.contact-details-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy-dark);

  margin: 0 0 32px 0;

  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 12px;

  display: inline-block;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item-custom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.contact-detail-icon-custom {
  width: 52px;
  height: 52px;

  border-radius: 14px;

  background-color: var(--color-primary-light);
  color: var(--color-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;

  flex: 0 0 52px;

  box-shadow:
    0 4px 10px rgba(255, 87, 34, 0.08);

  box-sizing: border-box;
}

.contact-detail-icon-custom svg {
  display: block;
  flex-shrink: 0;
}

.contact-detail-content-custom {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-detail-content-custom h5 {
  font-family: var(--font-heading);

  font-size: 1.2rem;
  font-weight: 700;

  color: var(--color-navy-dark);

  margin: 0 0 6px 0;
}

.contact-detail-content-custom p {
  font-size: 0.95rem;

  color: var(--color-text-muted);

  line-height: 1.6;

  margin-top: 0;
}

.contact-detail-content-custom a {
  color: var(--color-navy-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-detail-content-custom a:hover {
  color: var(--color-primary);
}

/* =========================================================
   LMTI BRANDING
========================================================= */

.lmti-name {
  display: block;

  font-size: 0.95rem;
  line-height: 1.35;

  text-transform: uppercase;

  color: #0277BA !important;

  font-weight: 700;

  margin-bottom: 2px;
}

.lmti-trust {
  display: block;

  font-size: 0.85rem;
  line-height: 1.4;

  font-weight: 600;

  color: #171717;

  margin-bottom: 6px;
}

/* =========================================================
   SOCIAL BUTTONS
========================================================= */

.contact-social-buttons {
  display: flex;
  align-items: stretch;

  gap: 12px;

  width: 100%;

  margin-top: 16px;

  box-sizing: border-box;
}

.contact-social-buttons a {
  text-decoration: none !important;
}

.contact-social-buttons .wa-link-btn,
.contact-social-buttons .instagram-link-btn {
  flex: 1 1 0;

  min-width: 0;
  min-height: 56px;

  margin: 0;

  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  box-sizing: border-box;

  white-space: nowrap;

  line-height: 1.2;

  border-radius: 12px;

  font-size: 0.92rem;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

/* =========================================================
   SOCIAL ICON
========================================================= */

.contact-social-buttons .social-icon {
  width: 22px;
  height: 22px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 22px;

  line-height: 0;
}

.contact-social-buttons .social-icon svg {
  width: 20px;
  height: 20px;

  display: block;

  flex: none;
}

/* =========================================================
   SOCIAL TEXT
========================================================= */

.contact-social-buttons .social-text {
  display: inline-block;

  width: auto;
  height: auto;

  flex: 0 1 auto;

  line-height: 1.2;

  white-space: nowrap;
}

/* =========================================================
   WHATSAPP
========================================================= */

.contact-social-buttons .wa-link-btn {
  background-color: #25D366;
  color: #ffffff;

  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.20);
}

.contact-social-buttons .wa-link-btn:hover {
  background-color: #20BA5A;
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 6px 16px rgba(37, 211, 102, 0.30);
}

/* =========================================================
   INSTAGRAM
========================================================= */

.contact-social-buttons .instagram-link-btn {
  background-color: #E1306C;
  color: #ffffff;

  box-shadow:
    0 4px 12px rgba(225, 48, 108, 0.20);
}

.contact-social-buttons .instagram-link-btn:hover {
  background-color: #C9275D;
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 6px 16px rgba(225, 48, 108, 0.30);
}

/* =========================================================
   MAP
========================================================= */

.map-section {
  padding-bottom: 96px;
  background-color: var(--color-bg-light);
}

.map-container-custom {
  width: 100%;
  height: 480px;

  border-radius: 24px;
  overflow: hidden;

  box-shadow: var(--shadow-lg);

  border: 4px solid var(--color-bg-white);

  transition: var(--transition-normal);

  box-sizing: border-box;
}

.map-container-custom:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.map-container-custom iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.contact-success-msg-custom {
  background-color: var(--color-primary-light);

  border: 1.5px solid rgba(255, 87, 34, 0.2);

  border-radius: 20px;

  padding: 48px 32px;

  text-align: center;

  box-shadow: var(--shadow-md);

  display: none;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;

  animation: fadeIn 0.4s ease;
}

.success-icon-box {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  background-color: var(--color-primary);
  color: var(--color-text-light);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  font-weight: 700;

  margin-bottom: 24px;

  box-shadow:
    0 8px 20px rgba(255, 87, 34, 0.3);
}

.contact-success-msg-custom h4 {
  font-family: var(--font-heading);

  font-size: 1.75rem;
  font-weight: 800;

  color: var(--color-navy-dark);

  margin: 0 0 12px 0;
}

.contact-success-msg-custom p {
  font-size: 1rem;

  color: var(--color-text-muted);

  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   FORM INPUT & LAYOUT
========================================================= */

.contact-form-card-custom {
  background-color: var(--color-bg-light);

  border: 1px solid var(--color-border);

  border-radius: 20px;

  padding: 28px;

  box-shadow: var(--shadow-sm);

  box-sizing: border-box;
}

.contact-form-heading {
  font-family: var(--font-heading);

  font-size: 1.5rem;
  font-weight: 700;

  color: var(--color-navy-dark);

  margin: 0 0 16px 0;
}

.form-group-custom {
  margin-bottom: 12px;
}

.form-group-custom label {
  display: block;

  font-size: 0.88rem;
  font-weight: 600;

  color: var(--color-text-dark);

  margin-bottom: 5px;
}

.form-control-custom {
  width: 100%;
  max-width: 100%;

  background-color: var(--color-bg-white);

  border: 1.5px solid var(--color-border);

  border-radius: 10px;

  padding: 9px 14px;

  font-size: 0.92rem;

  color: var(--color-text-dark);

  transition: var(--transition-fast);

  box-sizing: border-box;
}

.form-control-custom:focus {
  border-color: var(--color-primary);

  box-shadow:
    0 0 0 3px rgba(255, 87, 34, 0.1);

  outline: none;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 76px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

  .contact-grid-custom {
    gap: 40px;
  }

  .contact-details-card {
    padding: 32px;
  }

}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

  .contact-form-card-custom {
    padding: 24px 16px;
  }

  .contact-grid-custom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-details-card {
    padding: 32px 24px;
  }

  .map-container-custom {
    height: 300px;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .contact-form-card-custom {
    padding: 24px 16px;
  }

  .contact-details-card {
    padding: 24px 16px;
  }

  .map-container-custom {
    height: 260px;
  }

  .contact-detail-item-custom {
    gap: 14px;
  }

  .contact-detail-icon-custom {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  /* Stack social buttons */
  .contact-social-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .contact-social-buttons .wa-link-btn,
  .contact-social-buttons .instagram-link-btn {
    width: 100%;
    min-height: 54px;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ccffd6b */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --color-primary: #FF5722;
  /* Vibrant Orange/Red */
  --color-primary-hover: #E64A19;
  --color-primary-light: #FFF5F2;
  --color-navy-dark: #0B1226;
  /* Brand Dark Navy */
  --color-navy-slate: #1E293B;
  /* Slate Blue */
  --color-bg-light: #F8FAFC;
  /* Clean White/Grey */
  --color-bg-white: #FFFFFF;
  --color-text-dark: #0F172A;
  /* Charcoal/Slate */
  --color-text-light: #FFFFFF;
  --color-text-muted: #475569;
  --color-border: #E2E8F0;
  --color-red-tag: #EF4444;
  /* Alert Red */
  --color-gold-bg: #FFF7ED;
  /* Scholarship Pill Bg */
  --color-gold-text: #C2410C;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;

  --container-width: 1280px;
  --header-height: 74px;
  /* main header only */
}

/* --- RESET & BASIC STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  font-size: 16px;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

.text-center {
  text-align: center;
}

.highlight-text {
  color: var(--color-primary);
  font-weight: 700;
}

.section-pretitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  line-height: 1.15;
  margin-bottom: 40px;
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-navy-dark);
  color: var(--color-text-light);
  border: 1px solid var(--color-navy-dark);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn-orange {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary);
}

.btn-orange:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy-dark);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-navy-dark);
  background-color: rgba(11, 18, 38, 0.02);
}

/* --- DUAL HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

/* Secondary Navigation */
.secondary-header {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  height: 36px;
  display: flex;
  align-items: center;
}

.secondary-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
}

.sec-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.sec-link:hover {
  color: var(--color-primary);
}

/* Primary Navigation */
.primary-header {
  min-height: 84px;
  height: auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.primary-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-container img {
  height: 68px;
  width: auto;
  max-height: 72px;
  max-width: 160px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.nav-item-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.nav-item-link:hover {
  color: var(--color-primary);
}

.nav-item-link svg {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.nav-item-link:hover svg {
  transform: translateY(2px);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  list-style: none;
  background: var(--color-bg-white);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 20;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu-link {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--color-text-dark);
}

.nav-submenu-link:hover {
  background: rgba(255, 87, 34, 0.08);
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Mobile-only Apply button — hidden on desktop */
.mobile-apply-btn {
  display: none;
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
}

/* --- ENQUIRY POPUP MODAL --- */
.enquiry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 18, 38, 0.65);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.enquiry-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-popup-card {
  background-color: var(--color-bg-white);
  border-radius: 20px;
  padding: 22px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-normal);
}

.enquiry-popup-overlay.active .enquiry-popup-card {
  transform: scale(1) translateY(0);
}

.enquiry-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid var(--color-border);
  line-height: 1;
}

.enquiry-popup-close:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.enquiry-popup-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 4px;
}

.enquiry-popup-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.enquiry-popup-card .form-group-custom {
  margin-bottom: 10px;
}

.enquiry-popup-card .form-group-custom label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 3px;
}

.enquiry-popup-card .form-control-custom {
  width: 100%;
  background-color: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.enquiry-popup-card .form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
  background-color: var(--color-bg-white);
}

.enquiry-popup-submit {
  width: 100%;
  padding: 10px 14px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  margin-top: 6px;
}

.enquiry-popup-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(255, 87, 34, 0.4);
}

.enquiry-popup-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.enquiry-popup-success .success-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.enquiry-popup-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 8px;
}

.enquiry-popup-success p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* --- CSR SPECIFIC POPUP STYLES --- */
.csr-popup-badge {
  display: inline-block;
  background-color: var(--color-navy-dark);
  color: var(--color-accent-amber);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.enquiry-popup-card textarea.form-control-custom {
  resize: vertical;
  min-height: 70px;
  font-family: inherit;
}

.csr-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.csr-action-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background-color: #25d366;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.csr-action-btn-wa:hover {
  background-color: #1eb956;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.csr-action-btn-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-navy-dark);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.csr-action-btn-mail:hover {
  background-color: var(--color-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 18, 38, 0.3);
}



/* --- GALLERY SECTION --- */

/* --- FOOTER SECTION --- */
.main-footer {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 32px;
}

.app-explore-banner {
  background-color: var(--color-navy-dark);
  border-radius: 24px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.app-explore-banner::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.15);
  filter: blur(40px);
}

.app-explore-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
}

.app-store-badges-row {
  display: flex;
  gap: 16px;
  z-index: 5;
}

.store-badge-link img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 0.95fr);
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 4px;
  text-align: center;
}

.footer-brand-caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: center;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-item-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-item-link:hover {
  color: var(--color-primary);
  padding-left: 2px;
}

.footer-contact-address {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}

.footer-contact-address i {
  color: var(--color-primary);
  margin-top: 4px;
}

.footer-bottom-row {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 18, 38, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--color-text-light);
  cursor: pointer;
  user-select: none;
}

/* --- MOBILE DRAWER & RESPONSIVENESS --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }

  .secondary-header {
    display: none;
  }

  .nav-toggle-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 16px;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
    transition: var(--transition-normal);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-item-link {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-bg-light);
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 8px 0 0 16px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 4px;
  }

  .nav-submenu-link {
    padding: 8px 0;
    border-bottom: 0;
    font-size: 1rem;
  }

  .nav-toggle-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Header: shrink logo and hide Apply Now button on tablet/mobile */
  .logo-container img {
    height: 52px;
    max-height: 56px;
  }

  .primary-header {
    min-height: 70px;
    padding: 6px 0;
  }

  /* Hide desktop Apply Now, show compact mobile Apply button */
  .header-actions .btn#header-cta-btn {
    display: none;
  }

  .mobile-apply-btn {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-main-title {
    font-size: 2.25rem;
    margin-bottom: 24px;
  }

  .enquiry-popup-card {
    padding: 28px 20px;
    border-radius: 20px;
    max-width: 100%;
  }

  /* Enquiry popup full width on mobile */
  .enquiry-popup-card {
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .section-main-title {
    font-size: 1.75rem;
  }
}


/* --- SUBPAGE HERO BANNERS --- */
.subpage-banner {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, #16203d 100%);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.subpage-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.subpage-banner-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 87, 34, 0.15);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 87, 34, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.subpage-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.subpage-banner-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.6;
}/* End custom CSS */