/* ===================================================
   NICE PROPERTY – pages.css  (Premium Polish v2)
   Shared styles for all inner pages
   =================================================== */

/* ---- MISSING VARIABLES & UTILITIES ---- */
:root {
  --cream:  #faf8f4;
  --gold:   #004b87;
  --gray:   #6b7280;
  --dark:   #111827;
  --dark2:  #374151;
  --lgray:  #9ca3af;
  --shadow2: 0 8px 32px rgba(0,0,0,0.08);
  --shadow3: 0 10px 40px rgba(0,0,0,0.03);
}

.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.bg-cream { background: var(--cream); }

.body-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.body-text strong { color: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-left h2 em {
  font-style: italic;
  color: var(--gray);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0,75,135,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,180,180,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.ph-content {
  position: relative;
  z-index: 2;
}
.page-hero .label {
  color: #004b87;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.page-hero h1 {
  font-family: var(--serif, 'Campton', 'Poppins', sans-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gray);
  -webkit-text-fill-color: var(--gray);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--lgray);
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.breadcrumb a { 
  color: var(--gray); 
  transition: color 0.2s; 
  text-decoration: none;
}
.breadcrumb a:hover { color: #004b87; }
.breadcrumb span { color: var(--lgray); }

/* ---- ABOUT STAT BOX ---- */
.about-stat-box {
  background: linear-gradient(145deg, #f0f4f8, #e8ecf1);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border, #e5e7eb);
}
.asb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}
.asb-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid rgba(0,75,135,0.08);
  border-radius: 12px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.asb-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.asb-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #004b87;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.asb-item span {
  font-size: 0.76rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ---- MISSION & VISION ---- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 2.75rem 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #004b87, #00b4b4);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.mv-card:hover {
  border-color: rgba(0,75,135,0.2);
  box-shadow: var(--shadow2);
}
.mv-card:hover::before { opacity: 1; }
.mv-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.mv-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}
.mv-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.mv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mv-list li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.mv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00b4b4;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---- CORE VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.val-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s ease;
  text-align: center;
}
.val-card:hover {
  border-color: rgba(0,75,135,0.15);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}
.val-ico { font-size: 2.2rem; margin-bottom: 1.1rem; }
.val-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.val-card p { 
  font-size: 0.85rem; 
  color: var(--gray); 
  line-height: 1.75; 
  margin: 0; 
}

/* ---- CLIENTELE ---- */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.client-chip {
  font-family: var(--sans, 'Poppins', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border, #e5e7eb);
  color: var(--dark2);
  background: var(--white, #fff);
  transition: all 0.25s ease;
  cursor: default;
}
.client-chip:hover {
  background: #004b87;
  color: white;
  border-color: #004b87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,75,135,0.2);
}

/* ---- PAGE CTA STRIP ---- */
.page-cta-strip {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.page-cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.page-cta-strip h2 em {
  font-style: italic;
  color: var(--gray);
  -webkit-text-fill-color: var(--gray);
}
.page-cta-strip p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans, 'Poppins', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1.5px solid var(--dark2);
  color: var(--dark2);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ---- SERVICE INNER PAGE ---- */
.srv-hero-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.srv-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.srv-page-sidebar {
  position: sticky;
  top: 90px;
}
.srv-nav-box {
  background: linear-gradient(145deg, #f8f9fb, #f0f2f5);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.srv-nav-box h5 {
  font-family: var(--sans, 'Poppins', sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #004b87;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.srv-nav-box a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark2);
  transition: all 0.2s ease;
  margin-bottom: 3px;
  text-decoration: none;
}
.srv-nav-box a:hover, .srv-nav-box a.active-slink {
  background: white;
  color: #004b87;
  padding-left: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.srv-contact-box {
  background: linear-gradient(145deg, #f8f9fb, #f0f2f5);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 2rem;
  color: var(--dark);
}
.srv-contact-box h5 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.srv-contact-box p { 
  font-size: 0.88rem; 
  color: var(--gray); 
  line-height: 1.75; 
  margin-bottom: 1.25rem; 
}
.srv-contact-box a.btn-primary { 
  background: #004b87; 
  border-color: #004b87; 
  color: white; 
  font-weight: 600; 
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.25s ease;
}
.srv-contact-box a.btn-primary:hover {
  background: #003866;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,75,135,0.25);
}

.srv-content h2 { 
  margin-bottom: 1.5rem; 
  font-family: var(--serif); 
  font-size: clamp(1.5rem, 2.5vw, 2rem); 
  font-weight: 500; 
  color: var(--dark);
  line-height: 1.3;
}
.srv-content h2 em { font-style: italic; color: var(--gray); }
.srv-content p.body-text { margin-bottom: 1.25rem; }

.srv-highlight-box {
  background: linear-gradient(135deg, #f0f7ff, #f5f8fc);
  border-left: 4px solid #004b87;
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.srv-highlight-box p { 
  margin: 0; 
  font-size: 0.95rem; 
  color: var(--dark); 
  line-height: 1.85; 
  font-style: italic; 
}

.srv-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.sf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  background: var(--white, #fff);
  transition: all 0.3s ease;
}
.sf-item:hover { 
  border-color: rgba(0,75,135,0.15); 
  transform: translateX(4px); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.sf-tick { 
  color: #00b4b4; 
  font-weight: 700; 
  flex-shrink: 0; 
  margin-top: 2px; 
  font-size: 1.1rem;
}
.sf-item div strong { 
  display: block; 
  font-size: 0.9rem; 
  color: var(--dark); 
  margin-bottom: 4px; 
}
.sf-item div p { 
  margin: 0; 
  font-size: 0.8rem; 
  color: var(--gray); 
  line-height: 1.6; 
}

/* ---- PROPERTIES PAGE ---- */
.prop-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pp-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pp-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: rgba(0,75,135,0.15);
}
.pp-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  background: linear-gradient(135deg, #e8ecf1, #f0f2f5);
}
.pp-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 50%);
}
.pp-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: white;
  color: #004b87;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pp-body { padding: 1.25rem 1.5rem; }
.pp-body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.pp-body .pp-loc { 
  font-size: 0.78rem; 
  color: var(--lgray); 
  margin-bottom: 0.5rem; 
}
.pp-body .pp-size {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark2);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  display: block;
}
.pp-inq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0f4f8, #e8ecf1);
  color: #004b87;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}
.pp-inq-btn:hover { 
  background: #004b87; 
  color: white; 
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,75,135,0.2);
}

/* ---- MANAGEMENT TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.team-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.team-card:hover { 
  box-shadow: 0 12px 40px rgba(0,0,0,0.08); 
  border-color: rgba(0,75,135,0.12);
}
.tc-photo {
  background: linear-gradient(145deg, #f0f4f8, #e4e9ef);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem;
}
.tc-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004b87, #00b4b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(0,75,135,0.2);
  margin-bottom: 0.75rem;
}
.tc-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.tc-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tc-photo h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.tc-photo span {
  font-size: 0.72rem;
  color: #004b87;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.tc-body { padding: 2.75rem 3rem; }
.tc-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}
.tc-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.tc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.tc-highlights span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f0f4f8, #e8ecf1);
  border: 1px solid var(--border, #e5e7eb);
  color: #004b87;
  transition: all 0.25s;
}
.tc-highlights span:hover {
  background: #004b87;
  color: white;
  border-color: #004b87;
}

/* ---- NRI PAGE ---- */
.nri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.nri-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 2.25rem;
  transition: all 0.3s ease;
  position: relative;
}
.nri-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #004b87, #00b4b4);
  border-radius: 0 0 14px 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nri-card:hover { 
  border-color: rgba(0,75,135,0.15); 
  box-shadow: 0 8px 28px rgba(0,0,0,0.06); 
  transform: translateY(-5px); 
}
.nri-card:hover::before { opacity: 1; }
.nri-card .srv-icon { 
  font-size: 2rem; 
  margin-bottom: 1rem; 
  display: block; 
}
.nri-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.nri-card p { 
  font-size: 0.88rem; 
  color: var(--gray); 
  line-height: 1.8; 
  margin: 0; 
}

/* ---- MEDIA PAGE ---- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.media-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border, #e5e7eb);
  transition: all 0.3s ease;
  background: var(--white, #fff);
}
.media-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 32px rgba(0,0,0,0.08); 
  border-color: rgba(0,75,135,0.12); 
}
.mc-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #e8ecf1, #f0f2f5);
}
.mc-body { padding: 1.5rem; }
.mc-body h4 { 
  font-family: var(--serif); 
  font-size: 1.05rem; 
  font-weight: 600; 
  color: var(--dark); 
  margin-bottom: 0.5rem; 
  line-height: 1.3;
}
.mc-body p { 
  font-size: 0.82rem; 
  color: var(--gray); 
  margin: 0; 
  line-height: 1.6;
}

/* ---- CONTACT PAGE ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ---- POST REQUIREMENT ---- */
.post-req-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 18px;
  padding: 3rem;
  box-shadow: var(--shadow3);
}

/* ---- PREMIUM FORM DESIGN ---- */
.cf-box, .post-req-box {
  background: white;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  overflow: hidden;
}
.post-req-box h2 {
  font-family: var(--serif, 'Poppins', sans-serif) !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: white !important;
  background: linear-gradient(135deg, #004b87 0%, #00698f 50%, #00b4b4 100%);
  margin: 0 !important;
  padding: 2rem 2.5rem 1rem !important;
  letter-spacing: -0.01em;
}
.post-req-box h2 + p {
  background: linear-gradient(135deg, #004b87 0%, #00698f 50%, #00b4b4 100%);
  color: rgba(255,255,255,0.8) !important;
  margin: 0 !important;
  padding: 0 2.5rem 2rem !important;
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
}
.post-req-box form {
  padding: 2rem 2.5rem 2.5rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cf-grp {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.cf-grp label {
  font-family: var(--sans, 'Poppins', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cf-grp input, .cf-grp select, .cf-grp textarea {
  font-family: var(--sans, 'Poppins', sans-serif);
  font-size: 0.9rem;
  color: #111827;
  padding: 0.85rem 1.1rem;
  background: #f8f9fb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.cf-grp input::placeholder, .cf-grp textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.cf-grp select {
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23004b87" d="M0 0l5 6 5-6z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.cf-grp input:focus, .cf-grp select:focus, .cf-grp textarea:focus {
  background: white;
  border-color: #004b87;
  box-shadow: 0 0 0 3px rgba(0,75,135,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.cf-grp textarea {
  resize: vertical;
  min-height: 80px;
}

/* Dynamic fields container */
#dynamic-fields {
  border-top: 1px dashed #e5e7eb;
  border-bottom: 1px dashed #e5e7eb;
  padding: 1.25rem 0 0.25rem;
  margin: 0.5rem 0 1rem;
}
#dynamic-fields:empty {
  display: none;
}

/* Submit Button */
.btn-primary.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 0.95rem;
  border-radius: 12px;
  margin-top: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #004b87 0%, #006a9e 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,75,135,0.2);
}
.btn-primary.btn-full:hover {
  background: linear-gradient(135deg, #003866 0%, #005580 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,75,135,0.3);
}
.btn-primary.btn-full:active {
  transform: translateY(0);
}

/* Success Message */
.cf-ok {
  display: none;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  color: #065f46;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid #a7f3d0;
  box-shadow: 0 4px 12px rgba(16,185,129,0.08);
}

/* Mobile */
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .post-req-box h2 { padding: 1.5rem 1.5rem 0.75rem !important; font-size: 1.35rem !important; }
  .post-req-box h2 + p { padding: 0 1.5rem 1.5rem !important; }
  .post-req-box form { padding: 1.5rem; }
  .cf-grp input, .cf-grp select, .cf-grp textarea { font-size: 0.85rem; padding: 0.8rem 1rem; }
}

/* ===== SECTION TITLE OVERRIDES ===== */
.sec-header .label {
  color: #004b87;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.sec-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.sec-header h2 em { font-style: italic; color: var(--gray); }
.sec-header .sec-sub {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .srv-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .srv-page-sidebar { position: static; }
  .prop-page-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; }
  .tc-photo { min-height: 220px; }
  .tc-body { padding: 2rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .asb-grid { grid-template-columns: 1fr 1fr; }
  .nri-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .srv-features { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stat-box { display: flex; margin-top: 0; }
  .section-pad { padding: 56px 0; }
  .page-hero { padding: 4rem 0 3rem; }
  .page-cta-strip { padding: 4rem 0; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .prop-page-grid { grid-template-columns: 1fr; gap: 1rem; }
  .media-grid { grid-template-columns: 1fr; gap: 1rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .pp-body { padding: 1rem; }
  .pp-body h3 { font-size: 0.92rem; }
  .pp-body .pp-loc { font-size: 0.72rem; }
  .pp-body .pp-size { font-size: 0.75rem; }
  .pp-inq-btn { font-size: 0.68rem; padding: 7px 12px; }
  .pp-thumb { height: 140px; font-size: 2.5rem; }
  .mc-thumb { height: 140px; font-size: 2.5rem; }
  .srv-features { grid-template-columns: 1fr; }
  .val-card { padding: 1.5rem 1.25rem; }
  .val-ico { font-size: 1.8rem; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cf-box, .post-req-box { padding: 1.75rem; border-radius: 14px; }
  .post-req-box { padding: 1.75rem; }
  .team-card { grid-template-columns: 1fr !important; }
  .tc-body { padding: 1.5rem; }
  .tc-photo { padding: 2rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .srv-page-grid { grid-template-columns: 1fr; }
  .srv-page-sidebar { position: static; }
  .mv-card { padding: 2rem 1.5rem; }
  .nri-card { padding: 1.75rem; }

  /* Filter buttons — bigger touch targets on mobile */
  .pf-btn { padding: 8px 14px !important; font-size: 0.72rem !important; }
}
