/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #4A7FA5;
  --primary-dark: #3a6a8e;
  --bg:         #FAFAF8;
  --bg-soft:    #F0EDE8;
  --accent:     #C9A96E;
  --accent-dark:#b8924d;
  --text:       #2C2C2C;
  --text-light: #6B7280;
  --white:      #FFFFFF;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.28s ease;
  --max-w:      1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

section { padding: 80px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--text-light); }

.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--text-light);
  margin-bottom: 50px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 51, 82, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 51, 82, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.nav-cta {
  margin-left: 12px;
  background: var(--white) !important;
  color: #1a3352 !important;
  border-color: var(--white) !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 16px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 24px;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.mobile-menu .btn {
  margin: 10px 24px 0;
  justify-content: center;
}

/* ============================================================
   PAGE OFFSET (fixed nav)
   ============================================================ */
body { padding-top: 70px; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  background: linear-gradient(150deg, #1a3352 0%, #3a6a8e 60%, #4a7fa5 100%);
  padding: 80px 0 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  z-index: 0;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero .breadcrumb { margin-bottom: 14px; }
.inner-hero .section-label { color: var(--accent); margin-bottom: 12px; }
.inner-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.inner-hero h1 em { font-style: italic; color: var(--accent); }
.inner-hero .hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

.section-title em { font-style: italic; color: var(--accent); }

/* ============================================================
   PAGE BANNER (reusable)
   ============================================================ */
.page-banner {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,106,142,0.82) 0%, rgba(44,44,44,0.65) 100%);
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.page-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1e2d3d;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  background: linear-gradient(150deg, #5e83a3 0%, #6e9bbf 45%, #89b4ce 100%);
  height: 80vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
}

.hero-card {
  position: relative;
  z-index: 1;
  margin-left: 5%;
  width: 50%;
  min-height: 62%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.94) 0%,
    rgba(255,255,255,0.90) 40%,
    rgba(255,255,255,0.55) 68%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 90px 56px 52px;
}

.hero-card h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  color: #1a3352;
  margin-bottom: 20px;
  line-height: 1.12;
}
.hero-card h1 em {
  font-style: italic;
  color: #1a3352;
}

.hero-sub {
  font-size: 0.97rem;
  color: #4a5568;
  margin-bottom: 34px;
  line-height: 1.75;
  max-width: 380px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: #1a3352;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  border: 2px solid #1a3352;
  width: fit-content;
}
.btn-hero:hover {
  background: #2c4f7a;
  border-color: #2c4f7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,51,82,0.28);
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}
.hero-photo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  mix-blend-mode: multiply;
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: #1a3352;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  position: relative;
  z-index: 3;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  font-weight: 500;
  padding: 0 24px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ticker-star {
  color: #6b93b8 !important;
  font-size: 0.85rem !important;
  padding: 0 !important;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT HOME SECTION
   ============================================================ */
.about-home {
  background: var(--bg-soft);
  padding: 90px 0 0;
  overflow: hidden;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 80px;
}

/* Image */
.about-home-img-wrap {
  position: relative;
}

.about-home-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow-md);
}

.about-home-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.about-home-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-home-badge span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

/* Content */
.about-home-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.about-home-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}
.about-home-content h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-home-content > p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-checks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.about-checks li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(201,169,110,0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-home-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.about-phone:hover { color: var(--accent); }
.about-phone-icon { font-size: 1rem; }

/* Tagline strip */
.about-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #ece8e1;
  padding: 28px 40px;
}
.about-tagline p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text);
  white-space: nowrap;
  text-align: center;
}
.about-tagline p em {
  font-style: italic;
  color: var(--accent);
}
.tagline-line {
  flex: 1;
  height: 2px;
  background: var(--accent);
  opacity: 0.45;
  max-width: 120px;
}

@media (max-width: 768px) {
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .about-home-badge {
    bottom: -12px;
    left: -8px;
  }
  .about-home-actions { gap: 18px; }
  .about-tagline { padding: 22px 20px; flex-wrap: wrap; }
  .about-tagline p { white-space: normal; font-size: 1rem; }
  .tagline-line { display: none; }
}

/* ============================================================
   ACHIEVEMENT HOME SECTION
   ============================================================ */
.achievement-home {
  background: var(--bg);
  padding: 90px 0 0;
}

.achievement-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 0;
}

/* Stats 2x2 grid */
.achievement-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid #e8e4df;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.achievement-stat-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
}
.achievement-stat-card:nth-child(2),
.achievement-stat-card:nth-child(4) { border-right: none; }
.achievement-stat-card:nth-child(3),
.achievement-stat-card:nth-child(4) { border-bottom: none; }

.achievement-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-unit { font-size: 2rem; }
.achievement-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* Right content */
.achievement-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 32px;
}
.achievement-content h2 em {
  font-style: italic;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #e8e4df;
}
.accordion-item:first-child { border-top: 1px solid #e8e4df; }

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '∨';
  font-size: 1rem;
  color: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item[open] > summary::after {
  transform: rotate(180deg);
  color: var(--accent);
}
.accordion-item[open] > summary { color: var(--accent); }

.accordion-item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  padding-bottom: 16px;
}

/* Bottom awards strip */
.achievement-bottom {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 0;
  margin-top: 64px;
  border-top: 1px solid #e8e4df;
  flex-wrap: wrap;
}

.achievement-bottom-title h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  min-width: 150px;
}
.achievement-bottom-title h3 em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.achievement-badges {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.badge-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #b0a090;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 0 6px rgba(176,160,144,0.12);
  transition: transform var(--transition);
}
.badge-ring:hover { transform: translateY(-3px); }
.badge-ring.badge-gold {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.15);
}
.badge-ring.badge-silver {
  border-color: #9aa0aa;
  box-shadow: 0 0 0 6px rgba(154,160,170,0.12);
}

.badge-year {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.badge-ring.badge-gold .badge-title,
.badge-ring.badge-gold .badge-year { color: var(--accent); }

@media (max-width: 1024px) {
  .achievement-top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .achievement-stat-card { padding: 28px 20px; }
  .achievement-stat-num { font-size: 2.2rem; }
  .stat-unit { font-size: 1.6rem; }
  .achievement-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .achievement-badges { gap: 16px; }
  .badge-ring { width: 80px; height: 80px; }
  .badge-title { font-size: 0.68rem; }
}

/* ============================================================
   SERVICES PREVIEW (Home)
   ============================================================ */
.services-preview { background: var(--bg); padding: 90px 0; }

/* Header row */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-big-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: 6px;
  margin-bottom: 0;
}
.services-big-title em {
  font-style: italic;
  color: var(--accent);
}

.services-header-desc {
  max-width: 320px;
  text-align: right;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Image cards grid */
.services-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: transform var(--transition);
  text-decoration: none;
}
.service-img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.service-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.68) 100%);
  z-index: 0;
}

/* Fallback tints when no image provided yet */
.service-img-card:nth-child(2) { background-color: #3a6a8e; }
.service-img-card:nth-child(3) { background-color: #5a7a6e; }

.service-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  align-self: flex-start;
}

.service-img-body {
  position: relative;
  z-index: 1;
}
.service-img-body h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-img-body p {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-img-grid { grid-template-columns: 1fr; }
  .service-img-card { height: 300px; }
  .services-header-desc { text-align: left; max-width: 100%; }
}

/* Card slide-in animation */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-img-card {
  opacity: 0;
  transform: translateX(-60px);
}

.services-img-grid.in-view .service-img-card:nth-child(1) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 0ms;
}
.services-img-grid.in-view .service-img-card:nth-child(2) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 200ms;
}
.services-img-grid.in-view .service-img-card:nth-child(3) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 400ms;
}

/* ============================================================
   TESTIMONIALS SNIPPET (Home)
   ============================================================ */
.testimonials-snippet { background: var(--bg-soft); }

.snippet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}

.stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.reviewer-case { font-size: 0.78rem; color: var(--accent); }

/* ============================================================
   TESTIMONIALS SNIPPET — Redesigned
   ============================================================ */
.testimonials-snippet {
  background: #eef2f7;
  padding: 80px 0;
}

/* Header */
.testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.testi-header .section-label { margin-bottom: 0; }
.testi-header-right {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* Grid */
.testi-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Base card */
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Impact card */
.testi-card--impact {
  background: #1a3352;
  color: var(--white);
  justify-content: flex-end;
}

.testi-rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.testi-rating-big span {
  font-size: 1.4rem;
  opacity: 0.7;
}
.testi-rating-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

/* Stacked avatars */
.testi-avatars {
  display: flex;
  margin-bottom: 20px;
}
.testi-avatars .testi-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid #1a3352;
  margin-left: -8px;
  flex-shrink: 0;
}
.testi-avatars .testi-av:first-child { margin-left: 0; }

.testi-card--impact h3 {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.3;
}
.testi-impact-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

/* Subscribe form */
.testi-subscribe {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  padding: 4px 4px 4px 14px;
  gap: 6px;
}
.testi-subscribe input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.82rem;
  width: 100%;
  padding: 6px 0;
}
.testi-subscribe input::placeholder { color: rgba(255,255,255,0.5); }
.testi-subscribe button {
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.testi-subscribe button:hover { background: var(--accent-dark); }

/* Reviewer row */
.testi-reviewer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av--lg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Stars */
.testi-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* Date */
.testi-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* Review text */
.testi-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Learn more */
.testi-learn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  margin-top: auto;
}
.testi-learn:hover { color: var(--accent); }

@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* Testimonial cards slide-in animation */
.testi-card {
  opacity: 0;
  transform: translateX(-60px);
}

.testi-grid.in-view .testi-card:nth-child(1) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 0ms;
}
.testi-grid.in-view .testi-card:nth-child(2) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 200ms;
}
.testi-grid.in-view .testi-card:nth-child(3) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 400ms;
}
.testi-grid.in-view .testi-card:nth-child(4) {
  animation: slideInFromLeft 0.6s ease forwards;
  animation-delay: 600ms;
}

/* ============================================================
   CTA BANNER (Home)
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); max-width: 560px; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: 10px; max-width: 500px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bio-section { background: var(--white); }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.bio-img {
  position: relative;
}

.bio-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow-md);
}

.bio-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.bio-img-badge strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.bio-img-badge span { font-size: 0.78rem; letter-spacing: 0.06em; }

.bio-text h2 { margin-bottom: 16px; }
.bio-text p { margin-bottom: 16px; font-size: 0.97rem; }

.bio-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.bio-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.bio-value::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Timeline */
.timeline-section { background: var(--bg); }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--bg-soft);
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(74,127,165,0.15);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  flex: 1;
}
.timeline-year {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-content h3 { margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; }

/* Mission */
.mission-block {
  background: var(--primary);
  padding: 72px 0;
  text-align: center;
}
.mission-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.5;
  font-style: italic;
}
.mission-block cite {
  color: var(--accent);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { background: var(--bg); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Process Steps */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--bg-soft);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* Services CTA Strip */
.services-cta-strip {
  background: var(--bg-soft);
  padding: 56px 0;
  text-align: center;
}
.services-cta-strip h2 { margin-bottom: 12px; }
.services-cta-strip p { margin-bottom: 28px; }

/* ============================================================
   ACHIEVEMENTS PAGE
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--accent); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
  letter-spacing: 0.06em;
}

.awards-section { background: var(--bg); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}
.award-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.award-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.award-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.award-year {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.award-card p { font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-full { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: 0.92rem; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74,127,165,0.12);
}
textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 15px; }

.contact-info h3 { margin-bottom: 6px; }
.contact-info > p { margin-bottom: 28px; font-size: 0.92rem; }

.info-items { margin-bottom: 32px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-icon {
  width: 46px; height: 46px;
  background: rgba(74,127,165,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item strong { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 3px; }
.info-item span { font-size: 0.88rem; color: var(--text-light); }

.office-hours {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 28px;
}
.office-hours h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--text-light); }

.map-section { background: var(--white); padding: 0; }
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-img { max-width: 480px; margin: 0 auto; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Hero mobile */
  .hero {
    height: auto;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: -60px;
  }
  .hero-card {
    position: relative;
    order: 1;
    width: 90%;
    margin: 0 auto;
    padding: 28px 24px 60px;
    border-radius: 16px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
    z-index: 1;
  }
  .hero-photo {
    position: relative;
    right: auto;
    top: auto;
    height: 360px;
    width: 100%;
    order: 2;
    z-index: 2;
    justify-content: flex-end;
    margin-top: -200px;
  }
  .hero-photo img {
    height: 360px;
    width: auto;
    margin: 0 0 0 auto;
  }
  .services-grid { grid-template-columns: 1fr; }
  .snippet-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .services-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .page-banner { height: 240px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .bio-img-badge { position: static; margin-top: 16px; display: inline-flex; gap: 10px; align-items: center; }
}
