:root {
  --primary-darkest: #142d36;
  --primary-dark: #244c5c;
  --primary-medium: #326a80;
  --primary-light: #4086a4;
  --secondary-gold: #edc32a;
  --secondary-dark-gold: #d5a912;
  --accent-orange: #f07324;
  --text-light: #f0f9ff;
  --text-dark: #142d36;
  --card-border: rgba(50, 106, 128, 0.15);
  --section-bg-light: rgba(20, 45, 54, 0.03);
  --aurora-color: rgba(50, 106, 128, 0.1);
  --btn-gradient-start: #edc32a;
  --btn-gradient-end: #f07324;
  --font-heading: "Times New Roman", Times, serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background:
    radial-gradient(circle at 15% 25%, #e9ddab75 0px, transparent 40%),
    radial-gradient(circle at 85% 75%, #80b8d05c 0px, transparent 45%),
    linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Typography */
h1,
.text-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary-darkest);
  margin-bottom: 1.5rem;
}

h2,
.text-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

h3,
.text-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h4,
.text-h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-medium);
  margin-bottom: 0.75rem;
}

h5,
.text-h5 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary-medium);
  margin-bottom: 0.5rem;
}

p,
.text-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35em 0.8em;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  line-height: 1;
  color: var(--primary-darkest);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50rem;
  background-color: var(--secondary-gold);
}

/* Buttons */
/* Buttons Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-darkest);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.3s ease,
    filter 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Secondary Button (Variant A: Gold Gradient, No Border) */
.btn-sec, .btn-secondary {
  background: linear-gradient(90deg, var(--secondary-gold) 0%, var(--accent-orange) 100%);
  color: var(--primary-darkest);
}

.btn-sec:hover, .btn-secondary:hover {
  filter: brightness(1.1);
  color: var(--primary-darkest);
}

/* Primary Button (Animated Border via Pseudo-elements) */
.btn-pri, .btn-primary {
  background: var(--primary-darkest);
  color: var(--secondary-gold);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* The rotating gradient background */
.btn-pri::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
      var(--secondary-gold), 
      var(--accent-orange), 
      var(--secondary-gold)
  );
  z-index: -2;
  animation: rotate-border 4s linear infinite;
  -webkit-mask: none;
  mask: none;
}

/* The inner background to emulate "border" */
.btn-pri::after, .btn-primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--primary-darkest);
  border-radius: 48px;
  z-index: -1;
  transition: background 0.3s ease;
}

.btn-pri:hover, .btn-primary:hover {
  color: #fff;
}

.btn-pri:hover::after, .btn-primary:hover::after {
  background: var(--primary-dark);
}

@keyframes rotate-border {
  100% {
      transform: rotate(360deg);
  }
}

/* Links */
a,
.link {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
.link:hover {
  color: var(--primary-medium);
  text-decoration: underline;
}

/* Navigation Active State */
.nav-link.active {
  color: var(--secondary-gold) !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-gold);
  border-radius: 2px;
}


/* Stats */
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--secondary-dark-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--primary-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards Global - iOS Glassmorphism */
.card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Main Cards */
.card-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-main .card-content {
  flex-grow: 1;
}

/* Description Text Cards */
.description-text-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 4px solid var(--secondary-gold);
  padding: 2rem;
  border-radius: 0.75rem 1.25rem 1.25rem 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  color: var(--primary-dark);
}

.description-text-card p {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1vw, 1.2rem);
  color: inherit;
}

/* Stat Cards */
.card-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-stat:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-gold);
}

/* Badges (Variations) */
.badge-outline {
  background: transparent;
  border: 1px solid var(--primary-light);
  color: var(--primary-dark);
}

.badge-light {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: var(--primary-darkest);
}

/* Aurora Utilities */
.aurora-section-bg {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(237, 195, 42, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(64, 134, 164, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      var(--section-bg-light) 100%
    );
}

.aurora-card-background {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.4)
  );
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.aurora-img-shadows {
  filter: drop-shadow(0 15px 30px rgba(50, 106, 128, 0.2));
}

.aurora-card-shadows {
  box-shadow:
    0 10px 40px -10px rgba(50, 106, 128, 0.15),
    0 0 20px rgba(237, 195, 42, 0.05);
}

/* Animated Border Engine */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-aurora {
  to {
    --angle: 360deg;
  }
}

.pri-animated-card-borders {
  position: relative;
  border-radius: 1.25rem; /* Match .card */
  border: none !important; /* Ensure default borders don't conflict */
}

.pri-animated-card-borders::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Thinner animated border */
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    var(--secondary-gold),
    var(--accent-orange),
    #ffffff,
    var(--primary-light),
    var(--secondary-gold)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin-aurora 3s linear infinite;
  pointer-events: none;
}

/* .pri-animated-btn-borders Removed and integrated into .btn-pri */

/* Responsive Grid Layout */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

/* Multimedia Card (Image + Content) */
.card-multimedia {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Ensure image rounding */
  padding: 0; /* Override default card padding for flush image */
}

.card-multimedia .card-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-multimedia .card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-multimedia:hover .card-img-container img {
  transform: scale(1.05);
}

.card-multimedia .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-multimedia .card-title {
  font-size: 1.5rem; /* Fallback */
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--primary-darkest);
}

.card-multimedia .card-subtitle {
  font-size: 0.9rem;
  color: var(--secondary-dark-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-multimedia .card-desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-multimedia .card-link {
  align-self: flex-start;
  font-weight: 600;
  color: var(--primary-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-multimedia .card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-multimedia .card-link:hover::after {
  transform: translateX(4px);
}

/* Icon Card (Icon + Content) */
.card-icon {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card-icon .card-icon-container {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg-light);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--secondary-dark-gold);
  font-size: 1.5rem;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.card-icon:hover .card-icon-container {
  background: var(--secondary-gold);
  color: var(--primary-darkest);
  transform: rotateY(180deg);
}

.card-icon .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.card-icon .card-desc {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

/* 
   ========================================================================
   CONTACT MODAL STYLES
   ========================================================================
*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 45, 54, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}

.modal-overlay.active .contact-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-medium);
  cursor: pointer;
  transition: color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-orange);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-darkest);
}

.modal-subtitle {
  color: var(--primary-medium);
  margin-bottom: 2rem;
}

.modal-options {
  display: grid;
  gap: 1rem;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--primary-dark);
  transition: all 0.2s ease;
  font-weight: 600;
}

.modal-option:hover {
  background: white;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-gold);
}

.modal-option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg-light);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--secondary-dark-gold);
}

.modal-option-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.modal-option:hover .modal-option-icon {
  background: var(--secondary-gold);
  color: var(--primary-darkest);
}

/* 
   ========================================================================
   HEADER STYLES
   ========================================================================
*/
/* Header Base Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* Explicitly set transparent default */
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    padding 0.3s ease;
  padding: 1.5rem 0;
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-darkest);
  letter-spacing: 0.05em;
}

/* Desktop Navigation (Pill Card) */
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  list-style: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.5rem;
  border-radius: 50rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-darkest);
  background: rgba(20, 45, 54, 0.05);
  text-decoration: none;
}

/* Active State Design */
.nav-link.active,
.nav-item.active-parent .nav-link {
  background: var(--primary-medium); /* Dark fill for active pill */
  color: #ffffff;
}

/* Dropdown Menu (Mega Menu Style Grid) */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-width: 400px; /* Wide for grid */
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Invisible bridge to prevent menu from closing when moving mouse across gap */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); /* Flush against the nav item */
  pointer-events: auto;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--primary-dark);
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(237, 195, 42, 0.15); /* Subtle gold hover */
  color: var(--primary-darkest);
  text-decoration: none;
}

.dropdown-title {
  font-weight: 600;
  display: block;
}

/* Header Right (Contact & Mobile Toggle) */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366; /* WhatsApp Green */
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 50rem;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-icon-mobile {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: var(--primary-darkest);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-toggle .toggle-icon {
  width: 30px;
  height: 30px;
  display: block;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-toggle .close {
  display: none;
}

.mobile-toggle.active .hamburger {
  display: none;
}

.mobile-toggle.active .close {
  display: block;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.98);
  padding-top: 5rem; /* Space for header */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  height: 100vh;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  padding: 2rem;
}

.mobile-link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--primary-darkest);
  text-decoration: none;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease;
}

.mobile-link:hover {
  text-decoration: none;
  color: var(--secondary-dark-gold);
}

.mobile-link-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-link-group .mobile-link {
  border-bottom: none;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-medium);
  padding: 0 1rem;
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none;
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.mobile-submenu.open {
  max-height: 500px; /* Arbitrary large height */
}

.mobile-submenu li a {
  display: block;
  padding: 0.75rem 0;
  color: var(--primary-medium);
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}

/* 
========================================
   FAQ SECTION (Global)
========================================
*/
.faq-section {
  padding: 6rem 5%;
  background: #fff;
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.faq-title {
  font-size: 3rem;
  color: var(--primary-darkest);
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-darkest) 0%,
    var(--primary-medium) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--primary-medium);
  line-height: 1.6;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(237, 195, 42, 0.3);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-darkest);
  background: transparent;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--secondary-dark-gold);
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--secondary-gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: #fafafa;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--primary-medium);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--secondary-dark-gold);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

/* Visibility Control */
.hidden-faq {
  display: none;
}

.faq-load-more {
  text-align: center;
  margin-top: 3rem;
}

.btn-load-more {
  background: transparent;
  border: 2px solid var(--secondary-gold);
  color: var(--secondary-dark-gold);
  padding: 0.8rem 2.5rem;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: var(--secondary-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237, 195, 42, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
========================================
   FOOTER STYLES (Global)
========================================
*/
.site-footer {
  background: var(--primary-darkest);
  color: #fff;
  padding: 6rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-aurora {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(50, 106, 128, 0.4) 0%,
    transparent 60%
  );
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 350px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: var(--primary-darkest);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(237, 195, 42, 0.3);
}

/* Link Columns */
.footer-heading {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-gold);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50rem;
  overflow: hidden;
  padding: 0.35rem;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--secondary-gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #fff;
  outline: none;
  font-family: var(--font-body);
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group button {
  background: var(--secondary-gold);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-darkest);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.newsletter-input-group button:hover {
  transform: scale(1.1);
  background: #fff;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info img {
  width: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--secondary-gold);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left; /* Changed from center */
  }

  .footer-brand,
  .footer-newsletter,
  .footer-nav {
    align-items: flex-start; /* Changed from center */
  }

  .footer-heading::after {
    left: 0; /* Changed from 50% */
    transform: none; /* Changed from translateX(-50%) */
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center; /* Keeping bottom centered as usually preferred, unless user objects */
    gap: 1.5rem;
  }
}

/* 
========================================
   PROCESS SECTION (Global)
========================================
*/
.process-section {
  padding: 5rem 5%;
  background: transparent; /* Modified for transparency */
  position: relative;
  overflow: hidden;
}

.process-desc {
  max-width: 650px;
  margin: 0 auto 5rem;
  text-align: center;
  color: var(--primary-medium);
  font-size: 1.15rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Connecting Flow Line (Desktop) */
.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(237, 195, 42, 0.4);
  z-index: 0;
  transform: translateY(-50%);
}

.process-card {
  position: relative;
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.process-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(50, 106, 128, 0.1);
  border-color: rgba(237, 195, 42, 0.2);
}

.process-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -1.75rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(237, 195, 42, 0.4);
  font-weight: 300;
  transition: all 0.3s ease;
}

.process-card:last-child::after {
  display: none;
}

.process-card:hover::after {
  color: var(--secondary-gold);
  right: -2rem;
}

.process-number-box {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-darkest);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.process-number-box::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(237, 195, 42, 0.2) 0%,
    rgba(50, 106, 128, 0.05) 100%
  );
  z-index: -1;
  transition: inset 0.3s ease;
}

.process-card:hover .process-number-box::before {
  inset: -8px;
  background: linear-gradient(
    135deg,
    var(--secondary-gold) 0%,
    rgba(50, 106, 128, 0.2) 100%
  );
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-darkest);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.process-text {
  font-size: 0.95rem;
  color: var(--primary-medium);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .process-section {
    padding: 4rem 5%;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 5rem;
  }
  .process-grid::before {
    display: none;
  }
  .process-card::after {
    display: none;
  }
  .process-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.25rem;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      #ddd,
      #ddd 10px,
      transparent 10px,
      transparent 20px
    );
  }
  .process-card {
    text-align: left;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .process-number-box {
    margin: 0 0 1.5rem 0;
    position: absolute;
    left: -2.75rem;
    top: 2rem;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    transform: translateX(-50%);
  }
  .process-card::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 40px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent white transparent transparent;
    z-index: 10;
  }
  .process-card:hover {
    transform: translateX(5px);
  }
}

/* 
========================================
   TECH STACK MARQUEE (Global)
========================================
*/
@keyframes scrollTech {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 
========================================
   TRUST/TECH MARQUEE (Global)
   Used for Trust Bar (Home) and Tech Bar (Services)
========================================
*/
.trust-bar-section,
.tech-stack-section {
  background: white; /* Unified White Background */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}

/* Shared Track Logic */
.trust-track,
.tech-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  /* Animation speed might differ, can override if needed */
  animation: trust-scroll 40s linear infinite;
}

.trust-item,
.tech-item {
  display: flex; /* Changed from inline-flex to flex for consistency */
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.1rem; /* Unified size */
  font-weight: 700;
  color: var(--primary-darkest);
  opacity: 0.7;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin: 0; /* Removing inconsistent margins */
}

.trust-item:hover,
.tech-item:hover {
  opacity: 1;
  color: var(--secondary-dark-gold);
  transform: translateY(-2px);
}

.trust-icon,
.tech-icon {
  width: auto;
  height: 24px;
  font-size: 1.5rem;
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Gradient fade for edges */
.trust-bar-section::before,
.trust-bar-section::after,
.tech-stack-section::before,
.tech-stack-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar-section::before,
.tech-stack-section::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.trust-bar-section::after,
.tech-stack-section::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

/* 
========================================
   SERVICES SECTION (Globalized from home.css)
========================================
*/
.services-section {
  padding: 4rem 0;
  position: relative;
  /* Background handled by specific page or transparency */
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.services-desc {
  font-size: 1.1rem;
  color: var(--primary-medium);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile first: 1 column */
  gap: 2rem;
  align-items: start;
}

.services-section .container {
  padding: 0 5%;
  margin: 0 auto;
  max-width: 1400px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet/Desktop: 2 columns */
  }
}

.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(237, 195, 42, 0.3); /* Added Gold Border on Hover */
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-darkest);
  margin: 0;
}

/* Expand/Collapse Indicator */
.service-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-darkest);
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-card.active .service-toggle {
  transform: rotate(45deg); /* Turn + into x */
  background: #ffe0b2;
}

/* Hidden Content */
.service-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.3s ease;
  margin-top: 0;
}

.service-card.active .service-details {
  max-height: 600px; /* Increased to fit content */
  opacity: 1;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary-medium);
  font-size: 0.95rem;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-dark-gold);
  font-weight: bold;
}

.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-dark-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* 
========================================
   CONTACT SECTION (Globalized from home.css)
========================================
*/
.contact-section {
  padding: 6rem 5%;
  background: transparent;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Left: Form --- */
.contact-form-box {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-darkest);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.form-control:focus {
  border-color: var(--secondary-gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(237, 195, 42, 0.1);
  background: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}
.custom-select {
  position: relative;
  cursor: pointer;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #888; /* Placeholder color */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-select.active {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 4px rgba(237, 195, 42, 0.1);
  color: var(--primary-darkest);
}
.custom-select-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 250px;
  overflow-y: auto;
}
.custom-select.open + .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-option {
  padding: 0.8rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--primary-darkest);
}
.custom-option:hover {
  background: rgba(237, 195, 42, 0.1);
  color: var(--secondary-dark-gold);
}
.custom-option.selected {
  font-weight: 700;
  color: var(--secondary-dark-gold);
}
.arrow-icon {
  transition: transform 0.3s;
}
.custom-select.open .arrow-icon {
  transform: rotate(180deg);
}

/* Intl Tel Input Overrides */
.iti {
  width: 100%;
}
.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
  }
}

.form-submit-btn {
  background: linear-gradient(
    135deg,
    var(--secondary-gold),
    var(--secondary-dark-gold)
  );
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(237, 195, 42, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(237, 195, 42, 0.4);
}

/* --- Right: Details --- */
.contact-details {
  padding: 2rem 1rem;
}

.contact-badge {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
  padding: 0.4rem 1rem;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-darkest);
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--primary-medium);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--secondary-dark-gold);
}

.contact-svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-svg-small {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-text {
  padding-left: 1rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-darkest);
  font-weight: 700;
}

.contact-text a,
.contact-text p {
  color: var(--primary-medium);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: var(--secondary-gold);
}

.global-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #fff8e1; /* Light Gold/Cream background */
  color: var(--primary-darkest);
  border: 1px solid var(--secondary-gold);
  border-radius: 1rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .contact-section {
    padding: 1.5rem 2%;
  }
  .contact-form-box {
    padding: 1.5rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-details {
    order: -1;
    /* Removed text-align center */
    margin-bottom: 2rem;
  }
  .contact-info-list {
    /* Removed align-items center */
    text-align: left;
  }
  .global-badge {
    width: 100%;
    justify-content: flex-start; /* Changed from center to flex-start */
  }
}

/* 
========================================
   PRINCIPLES BAR (Globalized from about.css)
========================================
*/
.principles-bar {
  background: var(--primary-darkest);
  padding: 4rem 5%;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.principles-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(237, 195, 42, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.principles-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  border-color: var(--secondary-gold);
}

.principle-icon {
  font-size: 1.5rem;
  color: var(--secondary-gold);
}

.principle-text h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

.principle-text p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .principles-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .principle-item {
    width: 100%;
    justify-content: center;
  }
}

/*
========================================
   PRINCIPLES BAR (Globalized from about.css)
========================================
*/

.page-hero {
  position: relative;
  padding: 12rem 5% 4rem 5%;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Badge */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(237, 195, 42, 0.15); /* Gold tint */
  border: 1px solid rgba(237, 195, 42, 0.3);
  border-radius: 50rem;
  color: var(--secondary-dark-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.page-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(237, 195, 42, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 195, 42, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(237, 195, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 195, 42, 0);
  }
}

/* Title */
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}

.page-text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-dark)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* 
   ========================================================================
   FAQ STYLES (Globalized from services.css)
   ========================================================================
*/
.faq-section {
    padding: 6rem 5%;
    background: transparent;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-item:hover {
    border-color: rgba(237, 195, 42, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-darkest);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-dark-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--primary-medium);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

.faq-toggle-icon {
    color: var(--secondary-gold);
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.hidden-faq {
    display: none;
}

.load-more-btn-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.load-more-link {
    color: var(--secondary-gold);
    cursor: pointer;
    text-decoration: underline;
    font-size: 1rem;
}
