:root {
  --primary-blue: #3554D1;
  /* Restored original primary blue */
  --heading-navy: #1A1A1A;
  /* Restored original heading color */
  --body-grey: #171717;
  /* Restored original body color */
  --muted-grey: #888;
  /* Restored original muted color */
  --dark-grey: #262626;
  --nav-bg: #1A1A1A;
  --text-white: #ffffff;
  --text-grey: #A3A3A3;
  --container-width: 1416px;
  --container-half-width: 708px;
  --header-height: 180px;
  --font-family: 'Source Sans Pro', sans-serif;
  --section-padding: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: #FFFFFF;
  color: var(--body-grey);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  overflow-x: hidden;
}

/* --- Header Section --- */
.site-header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--nav-bg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  height: 90px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.top-bar {
  display: flex;
  background: var(--dark-grey);
  height: 110px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 1;
}

.site-header.scrolled .top-bar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 100px) 0 calc(50% - var(--container-half-width) + 480px);
}

.brand-section {
  position: absolute;
  top: 0;
  left: 0;
  height: 180px;
  /* Spans top-bar and main-nav and extends to left screen edge */
  width: calc(50% - var(--container-half-width) + 500px);
  background-color: var(--text-white);
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0% 100%);
  z-index: 20;
  display: flex;
  align-items: center;
  padding-left: calc(50% - var(--container-half-width) + 100px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 320px;
}

.site-header.scrolled .brand-section {
  height: 90px;
  width: calc(50% - var(--container-half-width) + 420px);
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
}

.brand-logo {
  height: 80px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .brand-logo {
  height: 60px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  color: var(--text-white);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 40px);
  margin-right: 45px;
  flex-shrink: 0;
}

.contact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.contact-item .icon img {
  width: 34px;
  height: 34px;
}

.item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.item-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-white);
  white-space: nowrap;
  opacity: 0.9;
}

.item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 0;
  white-space: nowrap;
}

.btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-white);
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  border-radius: 3px;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.enquire-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  /* Double chevron shape for smooth entrance and exit */
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  pointer-events: none;
}

.enquire-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  /* Narrow white chevron arrow */
  clip-path: polygon(0 0, 10% 0, 20% 50%, 10% 100%, 0 100%);
  pointer-events: none;
}

.enquire-btn.hover-in::before {
  animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.enquire-btn.hover-in::after {
  animation: arrowShoot 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.enquire-btn.hover-out::before {
  animation: slideOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.enquire-btn.hover-out::after {
  animation: arrowShoot 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideIn {
  from {
    left: -150%;
  }

  to {
    left: 0%;
  }
}

@keyframes slideOut {
  from {
    left: 0%;
  }

  to {
    left: 150%;
  }
}

@keyframes arrowShoot {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.enquire-btn:hover {
  color: #2a0ae2 !important;
}

/* Specific override for SCHEDULE A CONSULTATION and VIEW SITE PLAN buttons */
.consult-btn-alt::before,
.consult-btn-alt::after {
  background-color: var(--primary-blue) !important;
}

.consult-btn-alt:hover {
  color: #FFFFFF !important;
}

/* Specific override for footer contact button */
.footer-contact-btn {
  background-color: #FFFFFF !important;
  color: var(--primary-blue) !important;
}

.footer-contact-btn::before,
.footer-contact-btn::after {
  background-color: var(--primary-blue) !important;
}

.footer-contact-btn:hover {
  color: #FFFFFF !important;
}

/* Only the project button should have black text initially */
.black-text-init {
  color: #000000 !important;
}

.black-text-init .btn-icon {
  filter: brightness(0);
}

.consult-btn-alt:hover .btn-icon {
  filter: brightness(0) invert(1);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  background-color: var(--nav-bg);
  height: 70px;
  width: 100%;
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .main-nav {
  height: 90px;
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 100px 0 calc(50% - var(--container-half-width) + 520px);
  /* Buffer added to avoid brand section overlap */
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .nav-inner {
  padding-left: calc(50% - var(--container-half-width) + 360px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--nav-bg);
  z-index: 1000;
  padding: 40px;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}

main {
  padding-top: var(--header-height);
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-logo {
  height: 50px;
}

.close-menu {
  font-size: 40px;
  color: var(--text-white);
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.mobile-links a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-contact .contact-item {
  display: flex;
  gap: 24px;
}

.mobile-contact .icon img {
  width: 30px;
  height: 30px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(15px, 3vw, 40px);
  margin-right: 40px;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: #E5E5E5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.site-header.scrolled .nav-links a {
  font-size: 15px;
  color: #FFFFFF;
}

.nav-links a:hover,
.nav-links li.has-dropdown:hover>a,
.nav-links a.active-nav,
.site-header.scrolled .nav-links a.active-nav,
.site-header.scrolled .nav-links li.has-dropdown:hover>a,
.mobile-links a:hover,
.mobile-links li.mobile-has-dropdown.active>a,
.mobile-links a.active-nav {
  color: #89e4ff;
}

/* Dropdown Navigation */
.nav-links li {
  position: relative;
}

.has-dropdown .dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--nav-bg);
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-blue);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-white) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #89e4ff !important;
}

/* Mobile Dropdown Navigation */
.mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-menu {
  list-style: none;
  display: none;
  padding-left: 20px;
  margin-top: 15px;
  flex-direction: column;
  gap: 15px;
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown-menu a {
  font-size: 15px !important;
  text-transform: uppercase !important;
  color: #E5E5E5 !important;
}

.mobile-dropdown-menu a:hover {
  color: #89e4ff !important;
}

.nav-search {
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-search img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: width 0.3s, height 0.3s;
  display: block;
}

.site-header.scrolled .nav-search img {
  width: 20px;
  height: 20px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 700px;
  background-color: #000;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
  overflow: hidden;
  /* Space for stats boxes to sit at bottom */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

.hero-title {
  color: var(--text-white);
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 37px;
  letter-spacing: normal;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.stat-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 4px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
}

/* --- Global utils --- */
.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 100px;
}

.section-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-grey);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}

.section-badge.light {
  color: #FFFFFF;
}

.section-title {
  font-size: clamp(32px, 5vw, 36px);
  font-weight: 700;
  text-transform: none;
  color: var(--heading-navy);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title.white {
  color: #FFFFFF;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-blue);
  margin-bottom: 40px;
}

/* --- Why ICS Section --- */
.why-ics {
  position: relative;
  z-index: 30;
  background: #FFFFFF;
  margin-top: -120px;
  /* Overlap hero */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  width: calc(100% - 40px);
  /* Margin for small containers */
}

.why-image {
  flex: 1;
  min-height: 600px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  background: url('assets/PARK-NIGHT.webp') no-repeat center center;
  /* Placeholder for feature bg */
  background-size: cover;
}

.why-content {
  flex: 1.2;
  padding: 80px 60px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-icon {
  perspective: 1000px;
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transform-style: preserve-3d;
}

.feature-item:hover .feature-icon img {
  transform: rotateY(360deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--primary-blue, #3554D1);
  transform-style: preserve-3d;
}

.feature-item:hover .feature-icon svg {
  transform: rotateY(360deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-text p {
  font-size: 16px;
  line-height: 28px;
  color: var(--body-grey);
  max-width: 550px;
  padding-top: 4px;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

/* --- What We Provide --- */
.what-we-provide {
  padding: 100px 0;
  background-color: #F8F9FA;
}

.provide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #DDD;
  background: #FFF;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: var(--primary-blue);
  color: #FFF;
  border-color: var(--primary-blue);
}

.services-grid {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 40px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.service-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 20px);
  min-width: 350px;
  scroll-snap-align: start;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px;
  /* Give some breathing room for the animation */
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.service-img-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-content {
  background: #FFFFFF;
  padding: 30px 25px;
  margin-top: -80px;
  /* Overlap image */
  margin-left: clamp(10px, 3vw, 20px);
  margin-right: clamp(10px, 3vw, 20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  position: relative;
  z-index: 5;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.service-card:hover .service-content {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-label {
  font-size: 11px;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
  background: #F1F1F1;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
  align-self: flex-start;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--heading-navy);
}

.service-content p {
  color: var(--body-grey);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.service-list {
  color: var(--body-grey);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.service-list li {
  margin-bottom: 5px;
}

.read-more {
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.read-more .arrow-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.read-more:hover .arrow-icon {
  transform: translateX(5px);
}

/* --- About Intelicart --- */
.about-intelicart {
  position: relative;
  min-height: 600px;
  background: url('assets/about_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: stretch;
  overflow: visible;
  margin-top: 150px;
  z-index: 10;
}

.about-intelicart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 84, 209, 0.85);
  z-index: 1;
}

.about-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 100px;
}

.about-person {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.worker-img {
  position: absolute;
  bottom: 0;
  left: -60px;
  height: 850px;
  width: auto;
  display: block;
  z-index: 20;
  max-width: none;
}

.about-content {
  flex: 1.2;
  padding: 80px 0 100px 180px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.about-content .section-title {
  color: #FFFFFF;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.1;
  text-transform: none;
}

.about-content .subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 6px;
  display: block;
  margin-top: 10px;
  opacity: 0.9;
  text-transform: uppercase;
}

.about-divider {
  width: 80px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 35px 0;
}

.about-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
}

.ceo-signature-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signature-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 5px;
}

.ceo-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  text-transform: uppercase;
}

.ceo-name {
  color: #FFF;
  font-weight: 800;
  letter-spacing: 1px;
}

.ceo-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 12px;
}

.cta-banner-section {
  padding: 120px 0;
  background: #FFFFFF;
}

.cta-banner {
  background: #4C892E;
  border-radius: 8px;
  padding: 80px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  color: #FFFFFF;
}

.cta-banner-text {
  flex: 1 1 auto;
}

.cta-banner-action {
  flex-shrink: 0;
}

.cta-banner-text h2 {
  font-size: clamp(18px, 4.5vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: none;
  white-space: normal;
}

.cta-banner-text p {
  font-size: 16px;
  line-height: 28px;
  opacity: 0.9;
  max-width: 600px;
  color: #AAFF56;
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary-blue);
  padding: 18px 36px;
  font-size: 14px;
}

.info-faq-section {
  padding: 120px 0;
  background: #F8F9FA;
}

.info-faq-wrapper {
  display: flex;
  gap: 100px;
}

.mission-vision {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mv-block {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.mv-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid #577bdf;
  border-radius: 8px;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
}

.mv-block:hover::after {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.5s ease-out;
}

.mv-icon img {
  width: 50px;
  height: 50px;
}

.mv-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--heading-navy);
}

.mv-text p {
  font-size: 16px;
  line-height: 28px;
  color: var(--body-grey);
}

.faq-container {
  flex: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-navy);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  padding: 24px 30px;
  background-color: #F1F1F1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question,
.faq-question:hover {
  background-color: #366BFA;
  color: #FFFFFF;
}

.faq-question .toggle {
  transition: transform 0.3s ease, font-size 0.3s ease;
  font-size: 20px;
}

.faq-item.active .faq-question .toggle {
  font-size: 32px;
  line-height: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-bottom 0.3s ease;
  padding: 0 30px;
}

.faq-answer p {
  color: var(--body-grey);
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
  padding-top: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-bottom: 24px;
}

/* --- Footer --- */
.site-footer {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.footer-cta {
  background: url('assets/Footerbanner.webp') no-repeat center 58%;
  background-size: cover;
  background-color: var(--primary-blue);
  min-height: 196px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 84, 209, 0.556);
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-cta .btn-white {
  white-space: nowrap;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 4px;
  color: var(--primary-blue);
  background: #FFF;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.main-footer {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 100px 60px;
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}

.brand-col {
  margin-right: auto;
}

.footer-left {
  flex: 0 0 300px;
}

.footer-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.footer-logo {
  max-width: 260px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #FFFFFF;
  opacity: 1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: #89e4ff;
  transform: translateX(6px);
}

.footer-arrow {
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 2L6 5L3 8' fill='none' stroke='%2389e4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s;
}

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

.footer-contact-item .icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFF;
  opacity: 1;
  margin: 0;
  font-weight: 500;
}

.footer-bottom-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 100px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  opacity: 0.8;
}

/* --- Responsive Adjustments --- */

@media (max-width: 1440px) {
  :root {
    --container-width: 1200px;
    --container-half-width: 600px;
  }

  .brand-section {
    width: calc(50% - var(--container-half-width) + 450px);
    padding-left: calc(50% - var(--container-half-width) + 100px);
    clip-path: polygon(0 0, calc(100% - 70px) 0, 100% 100%, 0% 100%);
  }

  .main-nav {
    padding-left: calc(50% - var(--container-half-width) + 380px);
  }

  .why-ics {
    max-width: 1100px;
  }
}

@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
    --container-half-width: 480px;
  }

  .content-wrapper,
  .hero-content {
    padding-left: clamp(20px, 5vw, 100px);
    padding-right: clamp(20px, 5vw, 100px);
  }

  .top-bar-inner {
    padding-left: calc(50% - var(--container-half-width) + 380px);
    padding-right: clamp(20px, 5vw, 60px);
  }

  .brand-section {
    width: calc(50% - var(--container-half-width) + 380px);
    padding-left: calc(50% - var(--container-half-width) + 60px);
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
  }

  .main-nav {
    padding-left: calc(50% - var(--container-half-width) + 400px);
    padding-right: 20px;
  }

  .worker-img {
    height: 700px;
  }

  .info-faq-wrapper {
    gap: 50px;
  }

  .why-ics {
    max-width: 900px;
  }

  .why-content {
    padding: 60px 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-width: 100%;
    --header-height: 150px;
  }

  .top-bar {
    height: 90px;
  }

  .top-bar-inner {
    padding-left: 280px;
    padding-right: 20px;
    justify-content: flex-end;
  }

  .site-header {
    height: 150px;
  }

  .brand-section {
    height: 150px;
    width: 320px;
    clip-path: polygon(0 0, 260px 0, 100% 100%, 0% 100%);
    padding-left: 50px;
  }

  .main-nav {
    height: 60px;
    padding-left: 340px;
  }

  .nav-inner {
    padding-left: 0;
    padding-right: 30px;
    justify-content: flex-end;
  }

  .nav-links {
    gap: 20px;
    margin-right: 20px;
  }

  .site-header.scrolled .nav-inner {
    padding-left: 0;
  }

  .hero-title {
    font-size: 42px;
    max-width: 700px;
  }

  .hero {
    min-height: 600px;
  }

  .why-ics {
    flex-direction: column;
    max-width: 90% !important;
    margin-top: -60px;
  }

  .why-image {
    min-height: 400px;
    clip-path: none;
  }

  .why-content {
    padding: 50px 40px;
  }

  .service-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
  }

  .service-img-wrapper {
    height: 300px;
  }

  .about-wrapper {
    flex-direction: column;
    padding: 0 50px;
  }

  .worker-img {
    position: relative;
    height: 600px;
    left: 0;
    margin-bottom: -50px;
  }

  .about-content {
    padding: 60px 0;
  }

  .about-intelicart {
    margin-top: 50px;
  }

  .info-faq-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .cta-banner {
    padding: 60px 50px;
  }



  .main-footer {
    flex-direction: column;
    padding: 60px 50px;
  }

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

  .footer-cta {
    padding: 40px 50px;
  }

  .footer-cta-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .top-bar {
    display: none;
  }

  .site-header,
  .site-header.scrolled {
    height: 70px !important;
  }

  .brand-section,
  .site-header.scrolled .brand-section {
    height: 70px !important;
    width: auto !important;
    padding-left: 20px !important;
    clip-path: none !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    pointer-events: none !important;
    z-index: 2000 !important;
  }

  .brand-section .logo-link {
    pointer-events: auto !important;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 50px !important;
    width: auto !important;
  }

  .main-nav,
  .site-header.scrolled .main-nav {
    height: 70px !important;
    padding-left: 0 !important;
    background-color: #FFFFFF !important;
  }

  .nav-inner {
    padding: 0 20px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    position: relative;
  }

  .nav-links {
    display: none !important;
  }

  .nav-search {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    margin-right: 0 !important;
    position: relative !important;
    z-index: 3000 !important;
  }

  .mobile-menu-btn span {
    background-color: var(--heading-navy) !important;
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0 40px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    background: var(--nav-bg);
    z-index: 2000 !important;
    pointer-events: auto !important;
  }

  .mobile-nav.active {
    max-height: 100vh;
    padding: 40px;
    visibility: visible;
    opacity: 1;
    right: 0;
  }

  .mobile-nav-top {
    display: none;
  }

  .mobile-overlay {
    top: 70px;
  }

  .hero {
    height: 65vh;
    min-height: 450px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #000;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
  }

  .hero-title {
    font-size: 32px;
    margin: 0 auto 30px auto;
  }

  .stats-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 350px;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    pointer-events: auto;
  }

  .stat-box {
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
  }

  .content-wrapper {
    padding: 0 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .why-ics {
    margin-top: 30px;
    width: 100%;
    max-width: 100% !important;
    border-radius: 0;
    box-shadow: none;
  }

  .why-content {
    padding: 40px 20px;
  }

  .feature-item {
    gap: 15px;
  }

  .feature-text p {
    max-width: 100%;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .service-content {
    margin-left: 10px;
    margin-right: 10px;
    padding: 25px 20px;
    margin-top: -60px;
  }

  .about-intelicart {
    margin-top: 0;
  }

  .about-wrapper {
    padding: 0 20px;
  }

  .worker-img {
    height: 380px;
    margin-top: 20px;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .about-content .section-title {
    font-size: 34px;
  }

  .about-content .subtitle {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }

  .cta-banner-section {
    padding: 60px 0;
  }

  .info-faq-section {
    padding: 60px 0;
  }

  .what-we-provide {
    padding: 60px 0;
  }

  .provide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .footer-cta {
    padding: 60px 20px;
    height: auto !important;
    min-height: 200px;
  }

  .footer-bottom-container {
    padding: 0 20px;
  }



  .mv-block {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .faq-container .section-title {
    font-size: 28px;
  }

  .main-footer {
    flex-direction: column;
    padding: 40px 30px;
    text-align: left;
  }

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

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    margin: 0 0 30px 0;
  }

  .footer-cta-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .cta-text h2 {
    font-size: 22px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .cta-text h2 br {
    display: none;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {

  .brand-section,
  .site-header.scrolled .brand-section {
    width: auto !important;
    background-color: transparent !important;
    clip-path: none !important;
    pointer-events: none !important;
  }

  .footer-cta {
    padding: 60px 20px !important;
    min-height: 220px !important;
  }

  .cta-text h2 {
    font-size: 17px !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
    max-width: 280px;
  }

  .footer-cta-content {
    gap: 20px !important;
  }

  .main-nav,
  .site-header.scrolled .main-nav {
    padding-left: 210px !important;
  }

  .hero-title {
    font-size: 26px;
  }

  .stat-box {
    padding: 12px 14px;
    gap: 8px;
  }

  .stat-value {
    font-size: 14px;
  }

  .stat-label {
    font-size: 11px;
  }

  .worker-img {
    height: 300px;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .feature-list {
    gap: 28px;
  }

  .service-img-wrapper {
    height: 240px;
  }

  .cta-banner-section {
    padding: 50px 0;
  }

  .info-faq-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .faq-item {
    padding: 18px 16px;
    font-size: 14px;
  }

  .mv-text h3 {
    font-size: 18px;
  }
}

/* --- About Us Page Specific Styles --- */

/* About Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: url('assets/AboutUsBanner.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-white);
  padding-top: var(--header-height);
  padding-bottom: var(--header-height);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 84, 209, 0.7);
  /* Primary blue overlay from XD */
  z-index: 1;
}

.about-hero .content-wrapper {
  width: 100%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.about-hero .hero-title {
  font-size: 72px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* About Profile Section */
.about-profile {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.profile-subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 5px;
  color: #000000;
  margin-top: -45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.descending-dots {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: normal;
  margin-left: 12px;
  color: #000000;
  font-weight: 700;
}

.descending-dots span:nth-child(1) { font-size: 3.2em; opacity: 1.0; color: #2C5FA5; }
.descending-dots span:nth-child(2) { font-size: 2.8em; opacity: 1.0; color: #4DB4A4; }
.descending-dots span:nth-child(3) { font-size: 2.4em; opacity: 1.0; color: #91BEDE; }
.descending-dots span:nth-child(4) { font-size: 2.0em; opacity: 1.0; color: #557600; }
.descending-dots span:nth-child(5) { font-size: 1.6em; opacity: 1.0; color: #66A100; }

.profile-underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-blue);
  margin-bottom: 40px;
}

.profile-paragraphs p {
  margin-bottom: 24px;
}

.profile-paragraphs .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-navy);
  line-height: 1.6;
}

.ceo-signature-block-v2 {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signature-v2 {
  height: 60px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.ceo-name-v2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.ceo-title-v2 {
  font-size: 14px;
  color: var(--muted-grey);
}

.workers-img-v2 {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.05);
}

/* About Panels (Alternating) */
.about-panels {
  background-color: #F8F9FA;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

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

.panel-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.purpose-panel .panel-content {
  padding-right: calc(50vw - var(--container-half-width) + 80px);
}

.panel-content p {
  max-width: 580px;
  line-height: 1.8;
  color: var(--body-grey);
}

.accent-underline {
  width: 60px;
  height: 3px;
  margin-bottom: 30px;
}

.accent-underline.green {
  background-color: #557832;
}

.accent-underline.blue {
  background-color: var(--primary-blue);
}

.legacy-panel .panel-content {
  order: -1;
  padding-left: calc(50vw - var(--container-half-width) + 80px);
}

/* Construction & Form Section */
.about-construction {
  position: relative;
}

.construction-top {
  padding: 0;
  background-color: #4C7B28;
  /* More vibrant green to match design */
}

.construction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.construction-text {
  padding: 120px 100px 120px calc(50vw - var(--container-half-width) + 100px);
}

.white-opacity {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.construction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.construction-bottom {
  padding: 100px 0 140px;
  background: linear-gradient(135deg, #4C7B28 0%, #3554D1 80%);
  /* Smooth gradient instead of hard split */
}

.enquiry-card {
  background: #FFFFFF;
  border-radius: 30px;
  /* Increased rounding to match design */
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
  /* Softer, deeper shadow */
  margin-top: -60px;
  border: none;
}

.enquiry-form-side {
  padding: 60px;
}

.about-enquiry-form input,
.about-enquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  /* Changed to underline style */
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  margin-bottom: 30px;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s;
}

.about-enquiry-form input:focus,
.about-enquiry-form textarea:focus {
  border-bottom-color: var(--primary-blue);
  outline: none;
}

.about-enquiry-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-enquiry-form input::placeholder,
.about-enquiry-form textarea::placeholder {
  color: #999;
}

.about-enquiry-form textarea {
  height: 130px;
  resize: none;
}

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.form-footer p {
  font-size: 13px;
  color: var(--muted-grey);
  line-height: 1.5;
  max-width: 300px;
}

.btn-green {
  background-color: #4C7B28;
  /* Matching the vibrant green */
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background-color: #446128;
  transform: translateY(-2px);
}

.enquiry-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive for About Page */
@media (max-width: 1200px) {
  .about-hero .hero-title {
    font-size: 60px;
  }

  .profile-grid {
    gap: 50px;
  }

  .panel-content {
    padding: 80px 50px;
  }

  .construction-text {
    padding: 100px 50px 100px clamp(20px, 5vw, 100px);
  }
}

@media (max-width: 1024px) {
  .about-hero {
    height: auto;
    padding: 180px 0 100px;
  }

  .about-hero .hero-title {
    font-size: 48px;
  }

  .about-profile {
    padding: 80px 0;
  }

  .profile-grid,
  .construction-grid,
  .enquiry-card {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .legacy-panel .panel-content {
    order: 0;
  }

  .purpose-panel .panel-content,
  .legacy-panel .panel-content,
  .panel-content {
    padding: 60px 50px;
  }

  .construction-text {
    padding: 80px 50px;
  }

  .construction-bottom {
    padding: 80px 0 100px;
  }

  .enquiry-card {
    margin-top: -40px;
  }

  .enquiry-form-side {
    padding: 50px;
  }

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

  .form-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .form-footer p {
    max-width: 100%;
  }

  .enquiry-image-side {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero .hero-title {
    font-size: 34px;
  }

  .about-hero-content {
    padding: 0 24px;
  }

  .about-profile {
    padding: 50px 0;
  }

  .profile-paragraphs .lead {
    font-size: 18px;
  }

  .profile-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
  }

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

  .panel-content {
    padding: 50px 24px;
  }

  .accent-underline {
    margin-bottom: 20px;
  }

  .construction-text {
    padding: 60px 24px;
  }

  .construction-bottom {
    padding: 60px 0 80px;
  }

  .enquiry-form-side {
    padding: 40px 24px;
  }

  .enquiry-card {
    border-radius: 20px;
  }

  .btn-green {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .about-hero .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .profile-paragraphs .lead {
    font-size: 16px;
  }

  .signature-v2 {
    height: 40px;
  }

  .purpose-panel .panel-content,
  .legacy-panel .panel-content,
  .panel-content,
  .construction-text,
  .enquiry-form-side {
    padding: 40px 20px;
  }

  .panel-image {
    height: 300px;
  }
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #89e4ff;
  color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  border: none;
  box-shadow: 0 4px 15px rgba(137, 228, 255, 0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(53, 84, 209, 0.4);
}

.scroll-top-btn svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover svg {
  stroke: currentColor;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
