/* PT PALUGADA - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0F172A;
  --secondary-navy: #1E293B;
  --brand-blue: #1D4ED8;
  --brand-blue-hover: #1E40AF;
  --light-bg: #F8FAFC;
  --card-border: #E2E8F0;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* --- NAVIGATION --- */
.navbar-custom {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar-custom .navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.navbar-custom .nav-link {
  color: #CBD5E1;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.5rem;
  transition: color 0.2s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #FFFFFF;
}

.btn-blue-primary {
  background-color: var(--brand-blue);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-blue-primary:hover {
  background-color: var(--brand-blue-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline-light-custom:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* --- HERO SWIPER (LIGHTER OVERLAY FOR CLEARER BACKGROUND PHOTO) --- */
.hero-swiper {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding: 7rem 0 5rem 0;
}

/* Lighter, softer greyish-navy overlay so hero photo is clearly visible */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.1rem;
  color: #E2E8F0;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
  margin: 0 4px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--brand-blue);
  width: 30px;
  border-radius: 6px;
  opacity: 1;
}

/* --- SECTION HEADINGS --- */
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

/* --- SOLUTION CARDS (UNIFORM & FIXED CARD AREA) --- */
.solution-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.solution-img-wrapper {
  position: relative;
  height: 200px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.solution-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-img-wrapper img {
  transform: scale(1.05);
}

.solution-icon-badge {
  position: absolute;
  top: 172px;
  left: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  z-index: 20;
}

.solution-card-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

/* Fixed uniform height for short description */
.solution-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  min-height: 4.8rem; /* Uniform 3 lines height */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-explore {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto; /* Push to bottom of card */
}

.link-explore:hover {
  color: var(--brand-blue-hover);
  gap: 0.75rem;
}

/* Hyperlinked Card Images & Titles */
a.solution-img-wrapper,
a.portfolio-img-wrapper,
a.insight-img-wrapper {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.solution-card-title a,
.portfolio-title a,
.insight-title a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.solution-card-title a:hover,
.portfolio-title a:hover,
.insight-title a:hover {
  color: var(--brand-blue);
}

/* Expertise Sub-Item Cards */
.expertise-subcard {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.expertise-subcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  border-color: var(--brand-blue);
  color: inherit;
}
.expertise-subcard-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.expertise-subcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.expertise-subcard:hover .expertise-subcard-img img {
  transform: scale(1.06);
}
.expertise-subcard-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.expertise-subcard-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.expertise-subcard:hover .expertise-subcard-title {
  color: var(--brand-blue);
}
.expertise-subcard-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* --- ADVANTAGES --- */
.advantage-box {
  padding: 1.5rem 1rem;
  text-align: center;
}

.advantage-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #EFF6FF;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem auto;
  border: 1px solid #DBEAFE;
}

.advantage-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.advantage-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- PORTFOLIO & INSIGHT SWIPERS --- */
.swiper-container-custom {
  width: 100%;
  padding-bottom: 1rem;
}

.portfolio-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.portfolio-img-wrapper {
  height: 190px;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-body {
  padding: 1.25rem;
}

.portfolio-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.portfolio-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.portfolio-badge {
  background-color: #F1F5F9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--card-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
}

.slider-nav-btn:hover {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

/* --- INSIGHTS (UNIFORM CARD & 2-LINE FIXED TITLE SPACE) --- */
.insight-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.insight-img-wrapper {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-category {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

/* Reserved 2 lines space for title so card height is always uniform */
.insight-title {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  min-height: 3.1rem; /* Exactly 2 lines height space */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reserved uniform space for short description (2 lines) */
.insight-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 2.7rem; /* Exactly 2 lines height space */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-top: auto; /* Always align footer at bottom */
}

.insight-date {
  color: #94A3B8;
}

/* --- EXPERTISE PAGE TABS & GALLERY --- */
.expertise-hero {
  position: relative;
  min-height: 45vh;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.8) 100%), 
              url('../images/hero_building.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding-top: 6rem;
}

.expertise-tabs .nav-pills {
  background-color: #F1F5F9;
  padding: 0.5rem;
  border-radius: 14px;
  gap: 0.5rem;
  border: 1px solid var(--card-border);
}

.expertise-tabs .nav-link {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.expertise-tabs .nav-link:hover {
  background-color: #E2E8F0;
  color: var(--brand-blue);
}

.expertise-tabs .nav-link.active {
  background-color: var(--brand-blue) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

/* 4 Gallery Photos per Row Styling */
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-zoom-icon {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
  opacity: 1 !important;
}

/* --- WORK PROCESS --- */
.process-section {
  background-color: #F8FAFC;
  padding: 5rem 0;
}

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}

.process-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--brand-blue);
  font-size: 1.4rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}

.process-item:hover .process-icon-circle {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #FFFFFF;
  transform: scale(1.08);
}

.process-step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.process-step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- FOOTER --- */
.footer-custom {
  background-color: #0F172A !important;
  color: #94A3B8 !important;
  padding: 4.5rem 0 2rem 0 !important;
  font-size: 0.9rem !important;
  display: block !important;
  width: 100% !important;
  position: relative !important;
  z-index: 10 !important;
}

.footer-heading {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  padding-bottom: 0.5rem !important;
}

.footer-heading::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 35px !important;
  height: 2px !important;
  background-color: #1D4ED8 !important;
  border-radius: 2px !important;
}

.footer-desc {
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  color: #94A3B8 !important;
}

.footer-badges {
  display: flex !important;
  gap: 1.25rem !important;
  color: #CBD5E1 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

.footer-contact-item {
  display: flex !important;
  gap: 0.75rem !important;
  margin-bottom: 0.9rem !important;
  line-height: 1.5 !important;
  font-size: 0.88rem !important;
  align-items: flex-start !important;
  color: #CBD5E1 !important;
}

.footer-contact-item i {
  color: #3B82F6 !important;
  font-size: 1.1rem !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.map-container {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
  background-color: #1E293B !important;
  border: 1px solid #334155 !important;
  height: 180px !important;
}

/* Footer Area List */
.footer-area-title {
  color: #60A5FA !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.5rem !important;
}

.footer-area-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.footer-area-list li {
  margin-bottom: 0.35rem !important;
  color: #CBD5E1 !important;
  font-size: 0.82rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  list-style: none !important;
}

.footer-area-list li i {
  color: #3B82F6 !important;
  font-size: 0.65rem !important;
  flex-shrink: 0 !important;
}

/* Footer Form */
.footer-form .form-control,
.footer-form .form-select {
  background-color: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #FFFFFF !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  padding: 0.55rem 0.75rem !important;
}

.footer-form .form-control::placeholder {
  color: #94A3B8 !important;
}

.footer-form .form-control:focus,
.footer-form .form-select:focus {
  background-color: #1E293B !important;
  border-color: #1D4ED8 !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 0 0.2rem rgba(29, 78, 216, 0.25) !important;
}

.footer-form .form-select option {
  background-color: #1E293B !important;
  color: #FFFFFF !important;
}

.footer-bottom {
  border-top: 1px solid #1E293B !important;
  padding-top: 1.5rem !important;
  margin-top: 3rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  font-size: 0.85rem !important;
  color: #94A3B8 !important;
}

.btn-scroll-top {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: #1D4ED8 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}

.btn-scroll-top:hover {
  background-color: #1E40AF !important;
  color: #FFFFFF !important;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.btn-whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  left: auto !important;
  top: auto !important;
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  padding: 12px 22px 12px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
  z-index: 999999 !important;
  transition: bottom 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
}

.btn-whatsapp-float i {
  font-size: 1.6rem !important;
  line-height: 1 !important;
  color: #FFFFFF !important;
}

.btn-whatsapp-float:hover {
  background-color: #1EBE57 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6) !important;
}

.btn-whatsapp-float.footer-colliding {
  bottom: 90px; /* Moves higher when footer comes into view */
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
  position: relative;
  min-height: 45vh;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%), 
              url('../images/hero_building.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding-top: 6rem;
}

.vision-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #EFF6FF;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.value-box {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.value-box:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem auto;
}

/* --- CONTACT PAGE STYLES --- */
.contact-hero {
  position: relative;
  min-height: 45vh;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%), 
              url('../images/solution_property.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding-top: 6rem;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .process-line {
    display: none;
  }
  .process-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .btn-whatsapp-float {
    bottom: 20px;
    right: 70px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .btn-whatsapp-float .wa-text {
    display: none; /* Icon only on extra small screens */
  }
  .btn-whatsapp-float {
    border-radius: 50%;
    padding: 12px;
  }
}

/* PARTNER LOGO GRAYSCALE HOVER EFFECT */
.partner-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}
/* UTILITY CLASSES FOR NAVY & DIMENSIONS */
.bg-navy {
  background-color: var(--primary-navy) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

.text-primary-light {
  color: #93C5FD !important;
}

.w-10 {
  width: 2.5rem !important;
}

.h-10 {
  height: 2.5rem !important;
}

.w-12 {
  width: 3rem !important;
}

.h-12 {
  height: 3rem !important;
}

/* STICKY SIDEBAR TABLE OF CONTENTS STYLING */
.toc-sticky-box {
  position: sticky;
  top: 100px;
  z-index: 10;
}
.toc-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #64748B;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.toc-link:hover, .toc-link.active {
  color: #1D4ED8 !important;
  font-weight: 700;
  border-left-color: #1D4ED8;
  background-color: #EFF6FF;
  border-radius: 0 6px 6px 0;
}

