/* ============================================================
   MoNa Translates Ltd — style.css
   Design: Refined Ocean Authority
   ============================================================ */

/* Google Fonts loaded in HTML */

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

:root {
  /* Brand palette — deep ocean blue */
  --blue-950:    #071E30;
  --blue-900:    #0D3251;
  --blue-800:    #1A5276;   /* dominant brand blue */
  --blue-700:    #1F618D;
  --blue-600:    #2471A3;
  --blue-400:    #5DADE2;
  --blue-200:    #AED6F1;
  --blue-100:    #D6EAF8;
  --blue-50:     #EBF5FB;

  /* Accents */
  --gold:        #C49A2C;
  --gold-light:  #E8C86A;
  --teal:        #1A8C8C;
  --teal-light:  #4ECDC4;
  --pink-accent: #E8A0BF;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F6F9FC;
  --silver:      #8FA3B4;
  --border:      #D0DDE8;
  --text:        #1A202C;
  --text-mid:    #4A5568;
  --text-soft:   #718096;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:  clamp(60px, 8vw, 110px);
  --container:    1200px;
  --radius:       10px;
  --radius-lg:    20px;

  /* Transitions */
  --trans-fast:   0.2s ease;
  --trans-base:   0.35s ease;
}

/* =====================
   Base
   ===================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue-800);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top var(--trans-fast);
}
.skip-link:focus {
  top: 1rem;
}

/* Container */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* =====================
   Typography
   ===================== */

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 400;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  line-height: 1.25;
  font-weight: 400;
}

h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
}

p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-mid);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-mid);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* =====================
   Buttons
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-900);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-800);
}

.btn-outline-blue:hover {
  background: var(--blue-800);
  color: var(--white);
}

/* =====================
   Navigation
   ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--trans-base), box-shadow var(--trans-base), padding var(--trans-base);
}

.site-header.scrolled {
  background: var(--blue-900);
  box-shadow: 0 2px 20px rgba(10, 40, 65, 0.25);
  padding: 0.65rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-owl {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-brand-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: color var(--trans-fast), background var(--trans-fast);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans-base), opacity var(--trans-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-900);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-base);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  transition: color var(--trans-fast);
}

.nav-mobile-links a:hover {
  color: var(--gold-light);
}

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* =====================
   Hero
   ===================== */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-950) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='600' viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='650' cy='100' rx='300' ry='280' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='650' cy='100' rx='220' ry='200' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='650' cy='100' rx='140' ry='120' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M0 400 Q200 350 400 400 Q600 450 800 380' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.5'/%3E%3Cpath d='M0 450 Q200 410 400 450 Q600 490 800 440' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: right center;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 8rem 5rem;
}

.hero-content {
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* Hero entrance animation */
.hero-content {
  animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* =====================
   Wave Divider
   ===================== */

.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* =====================
   Intro Section
   ===================== */

.section-intro {
  padding-block: var(--section-pad);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--blue-800);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-visual {
  position: relative;
}

.globe-visual {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

/* =====================
   Services Section
   ===================== */

.section-services {
  padding-block: var(--section-pad);
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  color: var(--blue-900);
}

.section-header p {
  max-width: 580px;
  margin-inline: auto;
  margin-top: 0.75rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 82, 118, 0.12);
  border-color: var(--blue-200);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--trans-fast);
}

.service-card:hover .service-icon {
  background: var(--blue-100);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-800);
}

.service-card h3 {
  color: var(--blue-900);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =====================
   Certified Callout
   ===================== */

.section-certified {
  padding-block: 4rem;
  background: var(--blue-800);
  position: relative;
  overflow: hidden;
}

.section-certified::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.section-certified::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.certified-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.certified-seal {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certified-seal svg {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.certified-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.certified-text p {
  color: rgba(255,255,255,0.8);
}

.certified-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cert-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* =====================
   Why Choose Us
   ===================== */

.section-why {
  padding-block: var(--section-pad);
  background: var(--white);
}

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

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--blue-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-800);
}

.why-item-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.why-item-text p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.why-visual {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

.languages-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.lang-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.lang-chip.highlight {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-900);
  font-weight: 600;
}

.why-visual p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.why-visual h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* =====================
   Contact CTA Strip
   ===================== */

.section-cta-strip {
  padding-block: 4.5rem;
  background: var(--blue-950);
  text-align: center;
}

.section-cta-strip h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-cta-strip p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}

.cta-strip-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--trans-fast);
}

.cta-contact-link:hover {
  color: var(--gold-light);
}

.cta-contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

/* =====================
   Footer
   ===================== */

.site-footer {
  background: var(--blue-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-owl {
  width: 70px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans-fast);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-list svg {
  width: 15px;
  height: 15px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: inherit;
  transition: color var(--trans-fast);
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.social-link:hover {
  background: var(--blue-700);
  border-color: var(--blue-600);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

/* =====================
   Page Hero (inner pages)
   ===================== */

.page-hero {
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  padding-block: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='300' viewBox='0 0 600 300' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='520' cy='60' r='180' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='520' cy='60' r='120' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--trans-fast);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

/* =====================
   Services Page
   ===================== */

.section-services-detail {
  padding-block: var(--section-pad);
  background: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.service-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 30px;
  height: 30px;
  color: var(--blue-800);
}

.service-detail-item h3 {
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.service-detail-item p {
  font-size: 0.97rem;
  line-height: 1.8;
}

.certified-section {
  margin-top: 4rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.certified-section h2 {
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.certified-section .lead {
  margin-bottom: 1.5rem;
}

.doc-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.doc-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-800);
}

/* =====================
   About Page
   ===================== */

.section-about-main {
  padding-block: var(--section-pad);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-owl-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-owl-display svg {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(26, 82, 118, 0.2));
}

.about-text h2 {
  color: var(--blue-900);
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--gold);
  background: var(--blue-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--blue-900);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.pull-quote cite {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.section-offices {
  padding-block: var(--section-pad);
  background: var(--off-white);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-800), var(--blue-400));
}

.office-flag {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.office-card h3 {
  color: var(--blue-900);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.office-card address {
  font-style: normal;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}

.section-team-values {
  padding-block: var(--section-pad);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-card .value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-800);
}

.value-card h3 {
  color: var(--blue-900);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

/* =====================
   Contact Page
   ===================== */

.section-contact-main {
  padding-block: var(--section-pad);
  background: var(--white);
}

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

.contact-info h2 {
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}

.contact-office-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-office-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.contact-office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue-800);
  border-radius: 4px 0 0 4px;
}

.contact-office-card h4 {
  color: var(--blue-800);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-office-card address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-channel-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color var(--trans-fast);
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-channel-link:hover {
  color: var(--blue-800);
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.channel-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-800);
}

.channel-text {
  display: flex;
  flex-direction: column;
}

.channel-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-weight: 600;
}

.channel-value {
  font-weight: 500;
  color: var(--text);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h2 {
  color: var(--blue-900);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.form-group label span {
  color: var(--text-soft);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA3B4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(36, 113, 163, 0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-submit .btn {
  min-width: 160px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-soft);
}

#form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #155724;
  font-size: 0.92rem;
}

#form-success.visible {
  display: block;
}

/* =====================
   404 Page
   ===================== */

.page-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  text-align: center;
  padding: 2rem;
}

.page-404-inner {
  max-width: 540px;
}

.page-404-owl {
  width: 120px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.page-404 h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-404 .lead {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.page-404-inner {
  position: relative;
  z-index: 1;
}

/* =====================
   Scroll Animations
   ===================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================
   Utility
   ===================== */

.text-center { text-align: center; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.page-cta-section {
  padding-block: 4rem;
  background: var(--blue-50);
  text-align: center;
  border-top: 1px solid var(--blue-100);
}

.page-cta-section h2 {
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.page-cta-section p {
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-visual {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .certified-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .certified-seal {
    margin-inline: auto;
  }

  .certified-docs {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-owl-display svg {
    max-width: 220px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-stat-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip-contacts {
    flex-direction: column;
    align-items: center;
  }
}
