
/* ===== MERIT IT — MAIN STYLESHEET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.nowrap {
  white-space: nowrap;
}

.merit-flex {
  display: inline-flex;
  align-items: center;
}
.merit-flex img {
  height: 0.85em;
  width: auto;
  object-fit: contain;
  margin-left: 0.1em;
  align-self: center;
  margin-top: 0.20em;
}

.mer {
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

:root {
  --white:  #FFFFFF;
  --teal:   #00AAB5;
  --gray:   #58595B;
  --navy:   #0F385A;
  --light:  #F4F7FA;
  --teal-light: #E6F7F8;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(15,56,90,0.10);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--gray); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { color: var(--navy); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.section-title { margin-bottom: 1.25rem; }
.section-intro { font-size: 1.1rem; max-width: 680px; color: var(--gray); margin-bottom: 2.5rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #008f99; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0a2840; }

/* ===== HEADER / NAV ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 2px 12px rgba(15,56,90,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo img.logo-icon {  height: 42px; object-fit: contain; }
.nav-logo .logo-text { font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--gray); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a5276 100%); color: var(--white); padding: 7rem 0 6rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300AAB5' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-block; background: rgba(0,170,181,0.18); color: var(--teal); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem; border: 1px solid rgba(0,170,181,0.35); }
.hero-heading { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero-heading .merit-word { display: inline-flex; align-items: center; gap: 0.25rem; }
.hero-heading .it-icon { width: 0.85em; height: 0.85em; object-fit: contain; vertical-align: middle; display: inline-block; position: relative; top: -0.05em; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 500px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: var(--transition); }
.hero-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.hero-card-icon { width: 52px; height: 52px; margin-bottom: 0.75rem; object-fit: contain; filter: brightness(0) invert(1) opacity(0.9); }
.hero-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.hero-card p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; line-height: 1.4; }

/* ===== VALUES STRIP ===== */
.values-strip { background: var(--white); padding: 4rem 0; border-bottom: 1px solid #e8edf2; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.value-card { text-align: center; }
.value-icon { width: 72px; height: 72px; margin: 0 auto 1.25rem; object-fit: contain; }
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; color: var(--gray); margin: 0; }

/* ===== SERVICES (HOME) ===== */
.services-home { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2.25rem 1.75rem; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(15,56,90,0.14); }
.service-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.service-icon { width: 64px; height: 64px; margin-bottom: 1.25rem; object-fit: contain; }
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 1.25rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; font-size: 0.9rem; color: var(--teal); }
.service-link:hover { gap: 0.6rem; }

/* ===== MISSION / ABOUT STRIP ===== */
.about-strip { background: var(--navy); color: var(--white); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-strip h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-strip p { color: rgba(255,255,255,0.82); margin-bottom: 1rem; }
.about-strip-label { color: var(--teal); }
.about-strip-heading { color: #fff; }
.about-strip-cta { margin-top: 0.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.stat-box .number { font-size: 2rem; font-weight: 800; color: var(--teal); }
.stat-box .label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--teal); padding: 4rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-contacts { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.15); padding: 0.75rem 1.5rem; border-radius: 50px; color: var(--white); font-weight: 700; font-size: 1rem; border: 1.5px solid rgba(255,255,255,0.3); transition: var(--transition); }
.cta-contact-item:hover { background: rgba(255,255,255,0.28); }
.cta-contact-item svg { flex-shrink: 0; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a5276 100%); color: var(--white); padding: 5rem 0 4rem; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 3rem; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: #aaa; }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3.5rem; align-items: start; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.feature-item { background: var(--light); border-radius: var(--radius); padding: 1.25rem; border-left: 3px solid var(--teal); }
.feature-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.35rem; }
.feature-item p { font-size: 0.88rem; margin: 0; }
.sidebar-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2rem; position: sticky; top: 90px; }
.sidebar-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sidebar-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-contact a { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-weight: 600; font-size: 0.95rem; background: rgba(255,255,255,0.1); padding: 0.75rem 1rem; border-radius: 8px; transition: var(--transition); }
.sidebar-contact a:hover { background: rgba(255,255,255,0.2); }

/* ===== ABOUT PAGE ===== */
.about-mission { background: var(--light); }
.about-mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-values-full { background: var(--white); }
.values-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-full-card { background: var(--light); border-radius: var(--radius); padding: 2rem; text-align: center; border-top: 4px solid var(--teal); }
.value-full-card .value-icon { width: 80px; height: 80px; margin: 0 auto 1.25rem; }

/* ===== LEADERSHIP ===== */
.leadership { background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 800px; margin: 0 auto; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-card-avatar { background: linear-gradient(135deg, var(--navy) 0%, #1a5276 100%); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; font-weight: 800; color: var(--teal); }
.team-card-body { padding: 1.75rem; }
.team-card-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card-body .title { font-size: 0.85rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.team-card-body p { font-size: 0.93rem; color: var(--gray); margin: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text img { width: 1em; height: 1em; object-fit: contain; vertical-align: middle; display: inline-block; position: relative; top: -0.05em; filter: brightness(10); }
.footer-address { font-style: normal; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-top: 0.5rem; }
.about-leadership-cta { text-align: center; }
.about-leadership-cta .container { padding-top: 3rem; padding-bottom: 3rem; }
.about-leadership-intro { max-width: 560px; margin: 0 auto 2rem; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: 1rem; }
.page-hero .section-label { text-align: center; }
.service-detail-section { background: var(--white); }
.service-detail-icon { max-width: 120px; margin: 2rem 0; display: block; }
.features-heading { margin-top: 1rem; margin-bottom: 1rem; }
.sidebar-other-services { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); }
.sidebar-other-services h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.sidebar-other-services ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-other-services a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.leadership .section-label { text-align: center; }
.leadership-section-title { text-align: center; margin-bottom: 3rem; }
.leadership-philosophy { background: var(--white); }
.leadership-philosophy-container { max-width: 760px; text-align: center; margin: 0 auto; }
.philosophy-text { font-size: 1.1rem; margin-bottom: 1rem; }
.philosophy-actions { margin-top: 2.5rem; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.about-why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.about-why-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-why-check { color: var(--teal); font-size: 1.3rem; line-height: 1; }
.about-values-full { background: var(--light); }
.about-values-centered { text-align: center; }
.about-values-intro { text-align: center; margin: 0 auto 2.5rem; }
.value-icon-merit { max-height: 80px; width: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list a { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner, .about-strip-inner, .about-mission-inner, .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .services-grid, .values-grid, .values-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .service-features { grid-template-columns: 1fr; }
}
@media (max-width: 830px) {
  section { padding: 3rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-links.nav-open li { width: 100%; border-bottom: 1px solid var(--light); }
  .nav-links.nav-open li:last-child { border-bottom: none; }
  .nav-links.nav-open a { display: block; padding: 0.75rem 0; font-size: 1rem; }
  .nav-cta.nav-open { display: inline-flex; margin: 0.5rem 1.5rem; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
.site-header { position: relative; }
