:root {
  --ucl-purple: #5b2b82; /* brand accent */
  --ucl-purple-700: #442065;
  --ucl-gold: #d4a73c; /* anniversary */
  --ucl-gold-700: #b28524;
  --ucl-ink: #1b1b1f; /* body text */
  --ucl-slate: #5b616e; /* muted text */
  --ucl-bg: #0e0e12; /* dark header overlay */
  --ucl-surface: #ffffff; /* cards */
  --maxw: 1200px;
  --radius: 18px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial;
  color: var(--ucl-ink);
  background: #faf8ff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--ucl-purple);
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.25s ease;
  position: relative;
  line-height: 1;
  text-align: center;
}

.btn svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.btn.primary {
  background: var(--ucl-purple);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(91, 43, 130, 0.3);
  transition: all 0.3s ease;
}
.btn.primary:hover {
  background: var(--ucl-purple-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91, 43, 130, 0.4);
}
.btn.ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
  animation: pulseGlow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  outline-color: rgba(255, 255, 255, 0.5);
  animation: none;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    outline-color: rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0.3);
  }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ucl-purple);
}
.section {
  padding: 80px 0;
}
.section.tight {
  padding: 56px 0;
}

.title {
  font-size: clamp(1.8rem, 2.1vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 14px;
}
.subtitle {
  color: var(--ucl-slate);
  max-width: 100%;
  margin: 0 auto;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 90vh;
  color: #fff;
  display: grid;
  place-items: end;
  overflow: hidden;
  padding: 60px 0;
}

.page-header {
  background: var(--ucl-bg);
  position: relative;
  overflow: hidden;
  min-height: 30vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 40px 0;
}

.page-header-media img {
  filter: brightness(0.5);
}

.page-header-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/media/hero-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

.page-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55);
  position: relative;
  z-index: 0;
  display: block;
}

/* Additional dark gradient overlay for better text contrast on headers */
.page-header-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 6, 14, 0.6),
    rgba(10, 6, 14, 0.2) 55%,
    rgba(10, 6, 14, 0.65)
  );
  z-index: 1;
  pointer-events: none;
}

/* Improve legibility of header text */
.page-header h1, .page-header p.subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.page-header-inner {
  position: relative;
  z-index: 1;
  padding: 15px 0;
  width: 100%;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Top progress bar for hero slideshow */
.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 4;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.hero-progress > span {
  display: block;
  width: 0%;
  height: 100%;
  position: relative;
  background: linear-gradient(90deg, var(--ucl-purple), #7f56c5);
}
.hero-progress > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(50%, -50%);
  border-radius: 999px;
  background: var(--ucl-gold);
  box-shadow: 0 0 10px 3px rgba(212, 167, 60, 0.55), 0 0 22px 8px rgba(212, 167, 60, 0.3);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 10, 20, 0.8),
    rgba(15, 10, 20, 0.35) 55%,
    rgba(15, 10, 20, 0.85)
  );
  z-index: 1;
}
/* Add SVG overlay to home hero as well */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/media/hero-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.25;
  z-index: 2;
  pointer-events: none;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.1);
}
/* Home hero slideshow */
.hero-media .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-media .hero-slide.active {
  opacity: 1;
}

/* Animate hero content on slide change */
.hero-content-animate .hero-inner {
  animation: heroContentIn 600ms ease;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Slideshow controls */
.hero-controls {
  position: static;
  z-index: 3;
  display: block;
  pointer-events: auto;
}

.hero-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #333;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 180ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.hero-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hero-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 43, 130, 0.35), 0 12px 28px rgba(0,0,0,0.32);
}

.hero-btn.prev, .hero-btn.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.92);
}
.hero-btn.prev { left: 16px; }
.hero-btn.next { right: 16px; }

/* Reveal nav buttons on hero hover/focus */
header.hero:hover .hero-btn,
header.hero:focus-within .hero-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* Hero nav arrows and hover labels */
.hero-btn {
  position: relative;
  overflow: hidden;
  font-size: 26px;
  color: #fff;
  /* Smooth morph into pill */
  transition: opacity 220ms ease, background 180ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, width 220ms ease, border-radius 220ms ease, padding 220ms ease;
}
.hero-btn .arrow {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  transition: transform 220ms ease, opacity 220ms ease;
}
.hero-btn::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  transition: opacity 200ms ease, transform 220ms ease;
}
.hero-btn.prev::after { content: 'Previous'; }
.hero-btn.next::after { content: 'Next'; }
.hero-btn:hover .arrow { opacity: 0; transform: scale(0.8); }
.hero-btn:hover::after { opacity: 1; transform: scale(1); }
/* Morph to pill on hover */
.hero-btn:hover {
  width: 132px;
  border-radius: 999px;
}

.hero-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 3;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
}
.hero-indicators button {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}
.hero-indicators button.active { background: #fff; }
.hero-indicators button .progress {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
.hero-indicators button .progress > span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
}

/* Slide preview on indicator hover */
.hero-preview {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.25);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  backdrop-filter: blur(6px) saturate(1.1);
  background: rgba(15,10,20,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 200ms ease;
  z-index: 4;
}
.hero-preview.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  cursor: pointer;
}
.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Preview caption overlay */
.hero-preview .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 80%);
  color: #fff;
}
.hero-preview .info h4 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.1;
}
.hero-preview .info p {
  margin: 4px 0 0;
  font-size: 0.75rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero-btn.prev, .hero-btn.next { display: none; }
  .hero {
    min-height: 90vh;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: start;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  justify-content: flex-start;
}

.btn.primary {
  background: var(--ucl-purple);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(91, 43, 130, 0.3);
  transition: all 0.3s ease;
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
  
  .cta-row .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.crest-img {
  width: 186px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  display: block;
}
.seal {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, #fff 35%, #f4e9c9 36%),
    conic-gradient(from 180deg at 50% 50%, var(--ucl-gold), var(--ucl-gold-700));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.seal > div {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6px;
  border: 2px dashed var(--ucl-gold-700);
}
.seal small {
  display: block;
  font-weight: 800;
  color: var(--ucl-gold-700);
  letter-spacing: 0.12em;
}
.seal strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--ucl-ink);
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.05;
  margin: 10px 0 16px;
  font-weight: 800;
}
.hero p {
  font-size: 1.1rem;
  max-width: 65ch;
  color: #e7def1;
}
/* Improve legibility of home hero text */
.hero h1, .hero p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    justify-content: left;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
  .cta-row {
    justify-content: center;
  }
}

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px;
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
  }
  
  .kpi {
    min-height: 90px;
    padding: 14px 10px;
  }
  
  .kpi h3 {
    font-size: 1.3rem;
  }
  
  .kpi p {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  
  .kpi {
    min-height: 80px;
    padding: 12px 8px;
  }
  
  .kpi h3 {
    font-size: 1.2rem;
  }
  
  .kpi p {
    font-size: 0.75rem;
  }
}

.kpi {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kpi h3 {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.kpi p {
  margin: 0;
  color: #eae1f4;
  font-size: 0.8rem;
  line-height: 1.2;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

  .page-header {
    min-height: 25vh;
    padding: 30px 0;
  }
  
  .page-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .page-header h1 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.05;
  margin: 10px 0 16px;
  font-weight: 800;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 65ch;
  color: #e7def1;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  
  .page-header {
    min-height: 20vh;
    padding: 20px 0;
  }
  
  .cta-row .btn {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
}
.kpi {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff0f;
  border: 1px solid #ffffff2a;
  border-radius: 16px;
  padding: 18px;
}
.kpi h3 {
  margin: 0;
  font-size: 1.6rem;
}
.kpi p {
  margin: 4px 0 0;
  color: #eae1f4;
  font-size: 0.9rem;
}

/* --- CEO MESSAGE SECTION --- */
.ceo-message {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ceo-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.ceo-message .container {
  position: relative;
  z-index: 2;
}

.ceo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ceo-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 12px solid #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ceo-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ceo-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ceo-image:hover img {
  transform: scale(1.02);
}

.ceo-text {
  padding: 20px 0;
}

.ceo-text .title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.ceo-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid #d4a73c;
}

.ceo-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 32px;
}

.ceo-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.ceo-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a73c, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.ceo-signature-text strong {
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.ceo-signature-text .muted {
  color: #6b7280;
  font-size: 0.9rem;
}

.ceo-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ceo-cta .btn {
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.ceo-cta .btn.primary {
  background: var(--ucl-purple);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(91, 43, 130, 0.3);
  transition: all 0.3s ease;
}

.ceo-cta .btn.primary:hover {
  background: var(--ucl-purple-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91, 43, 130, 0.4);
}

/* --- JOURNEY SECTION --- */
#journey {
  background: #fafbfc;
  padding: 80px 0;
}

#journey .title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

#journey .subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0;
  line-height: 1.6;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 60px;
  margin-top: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #8b5a3c;
  border-radius: 2px;
}

.tl-item {
  position: relative;
  margin-bottom: 40px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -50px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #8b5a3c;
  z-index: 2;
}

.tl-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tl-card h4 {
  margin: 0 0 8px 0;
  color: #8b5a3c;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tl-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Timeline Responsive Design */
@media (max-width: 768px) {
  #journey {
    padding: 60px 0;
  }
  
  #journey .title {
    font-size: 2rem;
  }
  
  #journey .subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .timeline {
    padding-left: 50px;
    margin-top: 32px;
  }
  
  .timeline::before {
    width: 2px;
  }
  
  .tl-item {
    margin-bottom: 32px;
  }
  
  .tl-dot {
    left: -42px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  
  .tl-card {
    padding: 16px;
  }
  
  .tl-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .tl-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 40px;
    margin-top: 24px;
  }
  
  .timeline::before {
    width: 2px;
  }
  
  .tl-item {
    margin-bottom: 24px;
  }
  
  .tl-dot {
    left: -34px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
  
  .tl-card {
    padding: 14px;
  }
  
  .tl-card h4 {
    font-size: 0.95rem;
  }
  
  .tl-card p {
    font-size: 0.85rem;
  }
}

/* CEO Message Responsive Design */
@media (max-width: 768px) {
  .ceo-message {
    padding: 60px 0;
  }
  
  .ceo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ceo-image {
    border: 10px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  }
  
  .ceo-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  
  .ceo-image img {
    height: 400px;
  }
  
  .ceo-text .title {
    font-size: 1.8rem;
  }
  
  .ceo-quote {
    font-size: 1rem;
    padding-left: 20px;
  }
  
  .ceo-description {
    font-size: 0.95rem;
  }
  
  .ceo-signature {
    padding: 16px;
  }
  
  .ceo-avatar {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .ceo-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .ceo-message {
    padding: 40px 0;
  }
  
  .ceo-content {
    gap: 30px;
  }
  
  .ceo-image {
    border: 8px solid #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
  }
  
  .ceo-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .ceo-image img {
    height: 300px;
  }
  
  .ceo-text .title {
    font-size: 1.6rem;
  }
  
  .ceo-quote {
    font-size: 0.95rem;
    padding-left: 16px;
  }
  
  .ceo-description {
    font-size: 0.9rem;
  }
  
  .ceo-signature {
    padding: 12px;
  }
  
  .ceo-avatar {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
}

/* --- GRID UTIL --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section.tight {
    padding: 40px 0;
  }
  
  .title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
}

/* Page-specific grid: 20% sidebar / 80% content; stacks on narrow screens */
.air-grid {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .air-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 481px) and (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- CARDS / QUOTES --- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-card-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 22px;
}

.card:hover, .card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Shimmer effect on hover */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%);
  opacity: 0;
}

.card:hover::after, .card:focus-within::after {
  animation: shimmer-sweep 1.2s linear;
  opacity: 1;
}
.quote {
  border-left: 4px solid var(--ucl-purple);
  padding-left: 14px;
  color: var(--ucl-slate);
}
.sig {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--ucl-slate);
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eee;
}

/* --- COUNTERS --- */
.counters {
  background: linear-gradient(180deg, #fff, #fff 30%, #f3e7ff);
}
.counter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.counter .num {
  font-weight: 900;
  font-size: 2rem;
  color: var(--ucl-purple);
}
.muted {
  color: var(--ucl-slate);
}

/* --- PARTNERS --- */
.logo {
  height: auto;
  width: auto;
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* Partner carousel */
.partner-carousel {
  position: relative;
  margin-top: 16px;
}
.partner-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
}
/* fade edges for nicer overflow */
.partner-viewport {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  scroll-snap-type: x mandatory;
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 18px;
}
.partner-track .logo-wrap {
  min-width: 180px;
  scroll-snap-align: start;
}
/* Controls */
.pc-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pc-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  pointer-events: auto;
  background: #ffffff;
  border: 1px solid #e5e2ee;
  box-shadow: var(--shadow);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #333;
}
.pc-btn:hover {
  background: #f7f5fb;
}
.pc-prev {
  left: -50px;
}
.pc-next {
  right: -50px;
}
@media (max-width: 900px) {
  .pc-btn {
    display: none;
  }
}
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* --- STAFF --- */
.person {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}
.person .photo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ddd, #f7f7f7);
}
.badge {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  border-radius: 12px;
  background: #f7efe0;
  color: #6e4f11;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
}

/* --- CSR --- */
.csr {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2c0e3f, #5e2b83 45%, #7f56c5);
}

.csr-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(160deg, #2c0e3f, #5e2b83 45%, #7f56c5);
}

.csr-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
  display: block;
  min-height: 100%;
  opacity: 0.8;
}

.csr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(44, 14, 63, 0.8), rgba(94, 43, 131, 0.7) 45%, rgba(127, 86, 197, 0.6));
  z-index: 2;
}

.csr .container {
  position: relative;
  z-index: 3;
}

.csr .title,
.csr p {
  color: #fff;
}

.csr .card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* --- INSTAGRAM SECTION --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Responsive Instagram Grid */
@media (max-width: 1200px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

.instagram-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.instagram-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-embed {
  width: 100%;
  height: 100%;
}

.instagram-placeholder {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.instagram-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}

.instagram-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}

.instagram-user {
  flex: 1;
}

.username {
  color: #262626;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.location {
  color: #8e8e8e;
  font-size: 12px;
}

.instagram-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
}

.instagram-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.instagram-card:hover .instagram-image img {
  transform: scale(1.05);
}

.instagram-actions {
  padding: 12px 16px 8px;
}

.instagram-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.heart-icon,
.comment-icon,
.share-icon {
  width: 24px;
  height: 24px;
  background: #262626;
  border-radius: 50%;
  position: relative;
}

.heart-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.comment-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.share-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 1px;
}

.instagram-caption {
  padding: 0 16px 16px;
}

.caption-line {
  color: #262626;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.caption-line.short {
  color: #8e8e8e;
  font-size: 12px;
}

/* Instagram Loading and Error States */
.instagram-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid var(--ucl-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.instagram-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.instagram-follow-cta {
  text-align: center;
  margin-top: 2rem;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
  color: white;
  text-decoration: none;
}

/* Instagram Responsive Design */
@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instagram-image {
    height: 250px;
  }
  
  .instagram-loading,
  .instagram-error {
    padding: 2rem 1rem;
  }
}

/* Instagram Feed Additional Styles */
.instagram-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.instagram-placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 3rem;
}

.instagram-link {
  padding: 0 16px 16px;
  text-align: center;
}

.instagram-link a {
  color: #8e8e8e;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram-link a:hover {
  color: #262626;
  text-decoration: underline;
}

/* Instagram Loading States */
.instagram-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

/* Instagram Fallback Content */
.instagram-embed-wrapper {
  position: relative;
  transition: transform 0.2s ease;
}

.instagram-embed-wrapper:hover {
  transform: translateY(-2px);
}

.instagram-media {
  transition: all 0.2s ease;
  cursor: pointer;
}

.instagram-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.instagram-fallback-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
}


.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid var(--ucl-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.instagram-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #dc2626;
}

.instagram-error .btn {
  margin-top: 1rem;
}


/* Instagram Embed Cards */
.instagram-embed-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.instagram-embed-wrapper {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.instagram-embed-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-embed-wrapper iframe {
  width: 100% !important;
  height: auto !important;
  min-height: 400px;
  border: none;
  border-radius: 12px;
}

/* Instagram Feed Responsive */
@media (max-width: 900px) {
  .instagram-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .instagram-embed-wrapper iframe {
    min-height: 350px;
  }
}

@media (max-width: 600px) {
  .instagram-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instagram-embed-wrapper iframe {
    min-height: 300px;
  }
}

/* --- FOOTER --- */
html {
  scroll-behavior: smooth;
}

/* --- ACCESSIBILITY --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  z-index: 1000;
}

/* --- FOOTER (two-layer) --- */
.site-footer {
  background: #0e0617;
  color: #cfc5de;
}
.site-footer .footer-top {
  padding: 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .site-footer .footer-top {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.site-footer a {
  color: #dac6ff;
}
.site-footer .footer-bottom {
  border-top: 1px solid #ffffff20;
  background: #0b0712;
  padding: 14px 0;
}
.fb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 900px) {
  .fb-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #ffffff33;
  color: #fff;
}

/* --- ANIMATIONS --- */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in {
  opacity: 1;
  transform: none;
}

/* Ensure hero stats in headers are always visible, even before IO kicks in */
.page-header .hero-stats[data-animate] {
  opacity: 1;
  transform: none;
}

/* --- PAGE TRANSITIONS --- */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ucl-purple);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.page-transition-overlay.active {
  transform: translateY(0);
}

.page-transition-overlay.fade-out {
  transform: translateY(-100%);
}

body.page-transitioning {
  overflow: hidden;
}

/* Fade effect for main content */
main {
  opacity: 1;
  transition: opacity 0.3s ease;
}

main.fade-out {
  opacity: 0;
}

/* Spacing utilities */
.mt-10 {
  margin-top: 10px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-28 {
  margin-top: 28px;
}
/* Aspect ratio */
.ar-4-3 {
  aspect-ratio: 4/3;
}
.img-rounded-cover {
  border-radius: 12px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.title-sm {
  font-size: 1.6rem;
}

/* --- SITE HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg, rgba(1, 17, 31, 0.9));
  -webkit-backdrop-filter: saturate(1.2) blur(6px);
  backdrop-filter: saturate(1.2) blur(6px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* compensate content for fixed header - only for main website */
body:not(.admin-layout) {
  padding-top: var(--header-h, 80px);
}

/* Ensure sections with anchors scroll correctly under fixed header */
section,
[id] {
  scroll-margin-top: calc(var(--header-h, 80px) + 8px);
}

/* main-bar no longer needs z-index override when header is fixed */
.main-bar {
  position: relative;
  z-index: 1;
}

/* Video overlay modal */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}
.video-overlay.open {
  display: flex;
}
.video-dialog {
  width: min(920px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
.top-bar {
  background: #0e0617;
  color: #dac6ff;
  font-size: 0.9rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}
.top-bar .social {
  display: flex;
  gap: 10px;
}
.top-bar .social .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #ffffff33;
  color: #fff;
}
.top-bar .addr {
  opacity: 0.9;
}

.main-bar {
  position: relative;
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 60;
}
.main-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
  transition: padding 0.22s ease;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 250px;
  transition: height 0.22s ease;
}
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ucl-ink);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}

/* Account for fixed header height globally */
body:not(.admin-layout) {
  padding-top: var(--header-h, 110px);
}
@media (max-width: 900px) {
  body:not(.admin-layout) {
    padding-top: var(--header-h, 120px);
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .top-bar .addr {
    font-size: 0.8rem;
  }
  
  .top-bar .social .ic {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .nav-toggle {
    display: flex;
  }
}
/* Anchor offset equals header height */
section[id] {
  scroll-margin-top: calc(var(--header-h, 110px) + 10px);
}

/* --- VIDEO OVERLAY --- */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 20, 0.78);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.video-overlay.open {
  display: flex;
}
.video-dialog {
  width: min(960px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0008;
  color: #fff;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
/* Shrink header after scrolling */
.site-header.scrolled {
  background: var(--header-bg, rgba(1, 17, 31, 0.97));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.site-header.scrolled .main-bar .container {
  padding: 10px 20px;
}
.site-header.scrolled .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ucl-ink);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}

/* Account for fixed header height globally */
body:not(.admin-layout) {
  padding-top: var(--header-h, 110px);
}
@media (max-width: 900px) {
  body:not(.admin-layout) {
    padding-top: var(--header-h, 120px);
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .nav-toggle {
    display: flex;
  }
}
/* Anchor offset equals header height */
section[id] {
  scroll-margin-top: calc(var(--header-h, 110px) + 10px);
}

/* --- VIDEO OVERLAY --- */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 20, 0.78);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.video-overlay.open {
  display: flex;
}
.video-dialog {
  width: min(960px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0008;
  color: #fff;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
/* Partner logos: hover to color + shimmer */
.partner-track .logo {
  transition: filter 0.22s ease, opacity 0.22s ease;
}
.partner-track .logo-wrap {
  position: relative;
  overflow: hidden;
}
.partner-track .logo-wrap:hover .logo,
.partner-track .logo-wrap:focus-within .logo {
  filter: grayscale(0%);
  opacity: 1;
}
.partner-track .logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%);
  opacity: 0;
}
.partner-track .logo-wrap:hover::after,
.partner-track .logo-wrap:focus-within::after {
  animation: shimmer-sweep 1.2s linear;
  opacity: 1;
}
@keyframes shimmer-sweep {
  to {
    transform: translateX(150%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track .logo-wrap:hover::after,
  .partner-track .logo-wrap:focus-within::after {
    animation: none;
    opacity: 0;
  }
}
.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0008;
  color: #fff;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
/* --- NAV ACTIVE + DROPDOWN --- */
.site-nav a {
  color: var(--ucl-ink);
  font-weight: 600;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.site-nav a:hover {
  color: var(--ucl-purple);
  background-color: rgba(91, 43, 130, 0.05);
}

.site-nav a.active {
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(91, 43, 130, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a.active:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 43, 130, 0.3);
}

.site-nav a.active::after {
  display: none;
}
.has-dropdown {
  position: relative;
}
.has-dropdown > .dd-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.has-dropdown > .dd-toggle:hover {
  background: rgba(91, 43, 130, 0.1);
}

.has-dropdown.open > .dd-toggle {
  transform: rotate(180deg);
  background: rgba(91, 43, 130, 0.15);
}
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ece7f5;
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

.has-dropdown.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li {
  list-style: none;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #222;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.submenu a:hover {
  background: #f6f2fb;
  color: var(--ucl-purple);
  transform: translateX(3px);
}

.submenu a.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(91, 43, 130, 0.2);
}

.quote-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  font-weight: 600;
  border-radius: 6px;
  margin: 0.25rem 0;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0.75rem;
}

.quote-link:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(91, 43, 130, 0.3);
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .has-dropdown {
    width: 100%;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-left: 12px;
    transform: none;
    transition: height 0.3s ease, visibility 0.3s ease;
  }
  .has-dropdown.open > .submenu {
    visibility: visible;
    height: auto;
  }
  
  .site-nav > ul > li {
    width: 100%;
  }
  
  .site-nav a {
    display: block;
    padding: 12px 16px;
  }
}
.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0008;
  color: #fff;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}

/* --- Legacy content compatibility (imported pages) --- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.col-md-3 {
  flex: 1 1 260px;
  max-width: 320px;
}
.col-md-4 {
  flex: 1 1 300px;
  max-width: 360px;
}
.col-md-5 {
  flex: 1 1 340px;
  max-width: 420px;
}
.col-md-6 {
  flex: 1 1 420px;
  max-width: 520px;
}
.col-md-7 {
  flex: 2 1 480px;
}
.col-md-9 {
  flex: 3 1 620px;
}
.col-md-12 {
  flex: 1 1 100%;
}
.aside {
  padding: 0;
}
.aside .widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 14px;
}
.aside .title h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--ucl-purple);
}
.aside .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.aside .menu a {
  color: var(--ucl-ink);
}

/* Improved list styling */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.content-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ece7f5;
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--ucl-purple);
  border-radius: 50%;
}

.content-list > div {
  padding: 8px 0;
  border-bottom: 1px solid rgba(91, 43, 130, 0.1);
}

.content-list > div:last-child {
  border-bottom: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #555;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: var(--ucl-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.custom-heading h2 {
  margin-top: 0;
}

/* About Page Enhancements */
.company-intro h3,
.global-reach h3 {
  color: var(--ucl-purple);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--ucl-purple), #7c3aed);
  color: white;
  border-radius: 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.aeo-badge {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border: 2px solid var(--ucl-purple);
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.aeo-badge h3 {
  color: var(--ucl-purple);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.badge-description {
  color: #666;
  font-style: italic;
  margin: 0;
}

.compliance-highlight {
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid var(--ucl-purple);
  border-radius: 0 8px 8px 0;
}

.compliance-highlight p {
  margin: 0.5rem 0;
}

.compliance-highlight p:first-child {
  margin-top: 0;
}

.compliance-highlight p:last-child {
  margin-bottom: 0;
}

/* CEO Section Enhancements */
.ceo-image-card {
  padding: 0;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ceo-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 12px;
}

.image-container:hover .ceo-portrait {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.overlay-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.overlay-content p {
  margin: 0 0 0.5rem 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.tenure {
  background: var(--ucl-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.ceo-message .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ucl-purple);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ceo-signature {
  border-top: 2px solid #e9ecef;
  padding-top: 1.5rem;
}

.signature-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: var(--ucl-purple);
  flex-shrink: 0;
}

.signature-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.signature-details strong {
  font-size: 1.1rem;
  color: var(--ucl-purple);
}

.signature-details .title {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.signature-details .company {
  font-size: 0.8rem;
  color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .image-container {
    height: 300px;
  }
  
  .signature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .signature-line {
    width: 40px;
  }
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  color: var(--ucl-purple);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ucl-purple), #7c3aed);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 80px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--ucl-purple);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--ucl-purple);
}

.timeline-year {
  position: absolute;
  left: -60px;
  top: 0;
  background: var(--ucl-purple);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: center;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--ucl-purple);
}

.timeline-content h3 {
  color: var(--ucl-purple);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-item::before {
    left: 12px;
  }
  
  .timeline-year {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
    left: auto;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Make images inside imported content look consistent */
.page-content img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* General Image Optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all images fill their containers properly */
.card img,
.image-container img,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Specific image container optimizations for About page */
.about-page img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-page .image-container {
  aspect-ratio: 4/3;
  min-height: 300px;
}

.about-page .ceo-portrait {
  object-position: center top;
}

/* Ensure hero image fills the entire viewport */
.about-page .page-header-media {
  background: linear-gradient(135deg, var(--ucl-purple), #7c3aed);
}

.about-page .page-header-media img {
  opacity: 0.8;
  mix-blend-mode: overlay;
}

/* Enhanced hero image optimization */
.page-header-media img {
  min-width: 100%;
  min-height: 100%;
}

/* Cleaner hero sections without brand badges */
.page-header:not(.hero) {
  min-height: 25vh;
  padding: 30px 0;
}

.page-header:not(.hero) .page-header-inner {
  padding: 0;
  text-align: left;
  width: 100%;
}

.page-header:not(.hero) h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 8px;
  line-height: 1.2;
}

.page-header:not(.hero) .subtitle {
  font-size: 1rem;
  max-width: 50ch;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

/* Responsive image handling */
@media (max-width: 768px) {
  .about-page .image-container {
    height: 250px;
    aspect-ratio: 1/1;
  }
  
  .about-page .ceo-portrait {
    object-position: center center;
  }
  
  .crest-img {
    width: 150px;
  }
  
  /* Responsive hero heights */
  .page-header:not(.hero) {
    min-height: 20vh;
    padding: 20px 0;
  }
  
  .page-header:not(.hero) .page-header-inner {
    padding: 0;
    text-align: left;
  }
  
  .page-header:not(.hero) h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .about-page .image-container {
    height: 200px;
  }
  
  .crest-img {
    width: 120px;
  }
  
  /* Mobile hero heights */
  .page-header:not(.hero) {
    min-height: 15vh;
    padding: 15px 0;
  }
  
  .page-header:not(.hero) h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 6px;
  }
  
  .page-header:not(.hero) .subtitle {
    font-size: 0.9rem;
    max-width: 45ch;
  }
}

/* Contact Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--ucl-ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(91, 43, 130, 0.2);
  border-radius: 6px;
  background-color: #fff;
  color: var(--ucl-ink);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ucl-purple);
  box-shadow: 0 0 0 3px rgba(91, 43, 130, 0.2);
}

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

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* Services Grid Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Contact Page Layout */
.contact-layout {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  min-height: 600px;
}

/* Left Sidebar - Branch Locations */
.branch-sidebar {
  width: 350px;
  background: var(--ucl-surface);
  border: 1px solid var(--ucl-border);
  border-radius: var(--radius);
  overflow-y: auto;
  max-height: 600px;
  box-shadow: var(--shadow);
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--ucl-border);
  background: var(--ucl-purple);
  color: white;
}

.sidebar-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.sidebar-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.branch-list {
  padding: 1rem 0;
}

.branch-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--ucl-border);
}

.branch-item:hover {
  background: var(--ucl-background);
}

.branch-item.active {
  background: var(--ucl-purple);
  color: white;
}

.branch-item.active .branch-icon i {
  color: white;
}

.branch-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ucl-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.branch-item.active .branch-icon {
  background: rgba(255, 255, 255, 0.2);
}

.branch-icon i {
  color: var(--ucl-purple);
  font-size: 1.2rem;
}

.branch-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.branch-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--ucl-slate);
  line-height: 1.4;
}

.branch-item.active .branch-info p {
  color: rgba(255, 255, 255, 0.9);
}

.branch-services {
  font-size: 0.8rem;
  color: var(--ucl-slate);
}

.branch-item.active .branch-services {
  color: rgba(255, 255, 255, 0.8);
}

.more-services {
  color: var(--ucl-purple);
  font-weight: 500;
}

.branch-item.active .more-services {
  color: rgba(255, 255, 255, 0.9);
}

/* Quick Contact Section */
.quick-contact {
  padding: 1.5rem;
  border-top: 1px solid var(--ucl-border);
  background: var(--ucl-background);
}

.email-us-btn {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ucl-slate);
}

.contact-item i {
  color: var(--ucl-purple);
  font-size: 1.1rem;
}

/* Right Side - Map */
.map-section {
  flex: 1;
  position: relative;
  background: var(--ucl-background);
  border: 1px solid var(--ucl-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.interactive-map {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--ucl-background);
  color: var(--ucl-slate);
  text-align: center;
  padding: 2rem;
}

.fallback-content h3 {
  color: var(--ucl-purple);
  margin-bottom: 1rem;
}

.branch-list-fallback {
  margin-top: 1.5rem;
  text-align: left;
}

.fallback-branch {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ucl-border);
}

/* Branch Details Overlay */
.branch-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.branch-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content {
  padding: 0;
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--ucl-border);
  background: var(--ucl-purple);
  color: white;
  border-radius: 12px 12px 0 0;
}

.overlay-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.close-overlay {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.close-overlay:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.close-overlay:active {
  transform: scale(0.95);
}

.overlay-body {
  padding: 1.5rem;
}

.branch-info-content h3 {
  color: var(--ucl-purple);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.branch-description {
  color: var(--ucl-slate);
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 0.9rem;
}

.branch-details {
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: var(--ucl-background);
  border-radius: 8px;
}

.detail-item i {
  color: var(--ucl-purple);
  font-size: 1.1rem;
}

.detail-item a {
  color: var(--ucl-purple);
  text-decoration: none;
}

.detail-item a:hover {
  text-decoration: underline;
}

.branch-services h4 {
  color: var(--ucl-text);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.branch-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-services li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.25rem;
}

.branch-services li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ucl-purple);
  font-weight: bold;
  font-size: 0.8rem;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--ucl-border);
  background: var(--ucl-purple);
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    flex-direction: column;
  }
  
  .branch-sidebar {
    width: 100%;
    max-height: 300px;
  }
  
  .branch-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .branch-item {
    padding: 0.75rem 1rem;
  }
  
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
}

/* Contact Page Specific Enhancements */
.contact-layout .branch-sidebar {
  position: sticky;
  top: 2rem;
}

.contact-layout .map-section {
  min-height: 500px;
}

/* Hero Stats for Contact Page - Specific override */
.contact-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-page .hero-stats .kpi {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-page .hero-stats .kpi h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.contact-page .hero-stats .kpi p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  color: white;
}

/* Branch Item Hover Effects */
.branch-item {
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0.5rem;
}

.branch-item:hover {
  background: var(--ucl-background);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.branch-item.active {
  background: var(--ucl-purple);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(91, 43, 130, 0.3);
}

/* Map Fallback Styling */
.map-fallback {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: var(--radius);
}

.fallback-content {
  max-width: 400px;
}

.fallback-content h3 {
  color: var(--ucl-purple);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.fallback-content p {
  color: var(--ucl-slate);
  margin-bottom: 1.5rem;
}

.branch-list-fallback {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fallback-branch {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ucl-border);
  font-size: 0.9rem;
}

.fallback-branch:last-child {
  border-bottom: none;
}

.fallback-branch strong {
  color: var(--ucl-purple);
  display: block;
  margin-bottom: 0.25rem;
}

/* Setup Instructions Styling */
.setup-instructions {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.setup-instructions h4 {
  color: var(--ucl-purple);
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.setup-instructions ol {
  margin: 0;
  padding-left: 1.5rem;
}

.setup-instructions li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.setup-instructions code {
  background: var(--ucl-background);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--ucl-purple);
}

.setup-instructions a {
  color: var(--ucl-purple);
  text-decoration: none;
  font-weight: 500;
}

.setup-instructions a:hover {
  text-decoration: underline;
}

.service-card {
  background: var(--ucl-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(91, 43, 130, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ucl-purple);
  border: 2px solid var(--ucl-purple);
  box-shadow: 
    var(--shadow-lg),
    0 0 20px rgba(91, 43, 130, 0.3),
    0 0 40px rgba(91, 43, 130, 0.2);
}

.service-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-content {
  background: linear-gradient(135deg, rgba(91, 43, 130, 0.02), rgba(91, 43, 130, 0.05));
}

.service-content h3 {
  color: var(--ucl-purple);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-content p {
  color: var(--ucl-slate);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

.service-content .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-content .btn {
  box-shadow: 0 0 15px rgba(91, 43, 130, 0.4);
  transform: translateY(-1px);
}

/* Services Grid Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-content {
    padding: 1.25rem;
  }
}

/* Job Cards Styling */
.job-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.job-header {
  margin-bottom: 1rem;
}

.job-header h3 {
  margin: 0 0 0.5rem 0;
  color: var(--ucl-ink);
  font-size: 1.25rem;
  font-weight: 600;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.job-meta .badge {
  background: var(--ucl-purple);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.job-location,
.job-type {
  background: var(--ucl-gold);
  color: var(--ucl-ink);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.job-description {
  color: var(--ucl-slate);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-details {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.job-details div {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.job-details div:last-child {
  margin-bottom: 0;
}

.job-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-listing {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 2rem;
}

.job-listing:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-listing h3 {
  color: var(--ucl-purple);
  margin-bottom: 0.5rem;
}

.job-listing .job-meta {
  margin-bottom: 1rem;
}

.job-listing .job-meta .badge {
  background: var(--ucl-purple);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}


.feature-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--ucl-purple);
}

.feature-box h4 {
  margin: 0 0 0.5rem 0;
  color: var(--ucl-purple);
}

.feature-box p {
  margin: 0;
  color: var(--ucl-slate);
}

/* Responsive adjustments for job cards */
@media (max-width: 768px) {
  .job-actions {
    flex-direction: column;
  }
  
  .job-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .job-meta {
    flex-direction: column;
  }
  
  .job-meta .badge,
  .job-location,
  .job-type {
    width: fit-content;
  }
}

/* Quotation Page Styles */
.quotation-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.quotation-sidebar {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f8f9fa;
}

.current-service {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e9ecef;
}

.current-service .service-image {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.current-service .service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.current-service .service-icon span {
  font-size: 1.5rem;
  color: white;
}

.current-service .service-title {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.current-service .service-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.services-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-menu li {
  margin-bottom: 0.5rem;
}

.services-menu li:last-child {
  margin-bottom: 0;
}

.services-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #6c757d;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-menu a:hover {
  background: #f8f9fa;
  color: #2c3e50;
}

.services-menu li.active a {
  background: #5b2b82;
  color: white;
}

.service-icon {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  width: 24px;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #6c757d;
  font-size: 0.95rem;
}

.benefit-icon {
  background: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.quotation-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quotation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quotation-header h1 {
  color: var(--ucl-purple);
  margin-bottom: 1rem;
}

.quotation-header p {
  color: #666;
  font-size: 1.1rem;
}

.progress-indicator {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: #ddd;
  z-index: 1;
}

.progress-step.active:not(:last-child)::after {
  background: var(--ucl-purple);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
}

.progress-step.active .step-number {
  background: var(--ucl-purple);
}

.progress-step.completed .step-number {
  background: #28a745;
}

.step-title {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
}

.progress-step.active .step-title {
  color: var(--ucl-purple);
  font-weight: 600;
}

.form-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group label.required::after {
  content: ' *';
  color: #dc3545;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--ucl-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}


.btn-primary {
  background: var(--ucl-purple);
  color: white;
}

.btn-primary:hover {
  background: #4a1a5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 43, 130, 0.3);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #545b62;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-success:hover {
  background: #1e7e34;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.success-state {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-state h2 {
  color: #28a745;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.success-state p {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.quotation-number {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  border: 2px solid #e9ecef;
}

/* Quotation Page Responsive Design */
@media (max-width: 768px) {
  .quotation-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .quotation-sidebar {
    position: static;
    order: 2;
  }
  
  .quotation-container {
    order: 1;
    padding: 1rem;
  }
  
  .current-service .service-image {
    height: 100px;
  }
  
  .current-service .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .current-service .service-icon span {
    font-size: 1.2rem;
  }
  
  .current-service .service-title {
    font-size: 1.1rem;
  }
  
  .current-service .service-description {
    font-size: 0.9rem;
  }
  
  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }
  
  .progress-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .progress-step:not(:last-child)::after {
    display: none;
  }
}

/* Address Link Styling */
.addr a,
.muted a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.addr a:hover,
.muted a:hover {
  color: var(--ucl-purple);
  text-decoration: underline;
}

.addr a:focus,
.muted a:focus {
  outline: 2px solid var(--ucl-purple);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Pilot Line Styling */
.pilot-line {
  font-weight: 400;
  font-size: inherit;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline;
}

.pilot-line:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.pilot-line:focus {
  outline: 2px solid white;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Enhanced Footer Styling */

/* Footer Link Styling */
.footer-grid a {
  padding: 0.3rem 0;
  display: block;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.footer-grid a:hover {
  color: var(--ucl-purple);
  padding-left: 0.3rem;
}

/* Footer Grid Enhancement */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
}


