:root {
  --primary: #0f4c81;
  --primary-dark: #0b3760;
  --accent: #19a974;
  --bg: #f5f8fb;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

main {
  position: relative;
}

section {
  position: relative;
  width: 100%;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ===== CLIENT LOGIN ===== */
#templatemo_banner #login {
	float: left;
	width: 120px;
}

#login h2 {
	display: block;
	height: 23px;
	padding: 2px 0 0 20px;
	margin-bottom: 5px;
	font-size: 14px;
	text-decoration: none;
	color: #000000;
	font-weight: normal;
	outline: none;
}

#login form {
	float: right;
	width: 220px;
	margin: 0;
	padding: 0;
}

#login form label {
	display: block;
	margin-bottom: 5px;
}

.input_field {
	height: 20px;
	width: 205px;
	padding: 0 5px;
	margin-bottom: 10px;
	color: #000000;
	font-size: 12px;
	font-variant: normal;
	line-height: normal;
}

#submit_btn {
	float: right;
	height: 20px;
	width: 180px;
	margin: 0px;
	cursor: pointer;
	font-size: 12px;
	text-align: center;
	vertical-align: bottom;
	white-space: pre;
	color: #333;
	outline: none;
}

/* ===== HEADER & NAVIGATION ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  padding: 12px 0;
  min-height: auto;
}

.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: auto;
  padding: 0;
  flex-direction: row;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  justify-content: center;
}

.site-logo {
  height: 160px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* Menu tabs section */
.menu-tabs {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  margin: 0;
}

.menu-tabs .container {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-list li {
  margin: 0;
  display: flex;
  align-items: center;
  width: auto;
  text-align: center;
}

.nav-list li:not(:last-child)::after {
  content: '|';
  color: #d1d5db;
  margin: 0 12px;
  font-weight: 300;
}

.nav-list li a {
  display: block;
  padding: 14px 0;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-list li a:hover {
  color: var(--primary-dark);
}

.nav-list li a[aria-current="page"] {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===== HERO SECTIONS ===== */

.hero,
.page-hero {
  background: linear-gradient(135deg, var(--primary), #1d74b8);
  color: var(--white);
}

.hero {
  padding: 90px 0;
}

.page-hero {
  padding: 70px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1,
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.hero-text,
.hero p,
.page-hero p {
  font-size: 1.08rem;
  max-width: 850px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-text {
  margin-bottom: 28px;
  max-width: 680px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #149066;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero card */
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2,
.hero-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== SECTIONS ===== */

.section,
.content-section {
  padding: 76px 0;
}

.alt-bg {
  background: #eef4f9;
}

.section-header {
  margin-bottom: 24px;
}

.section-title,
.section-header h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section-subtitle,
.section-header p {
  color: var(--muted);
  max-width: 820px;
}

.section-header p + p {
  margin-top: 14px;
}

/* ===== SERVICES ===== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-item h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-item p {
  color: var(--muted);
}

/* ===== LISTS ===== */

.feature-list {
  list-style: disc;
  margin-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 4px;
}

/* ===== FEATURE BOXES ===== */

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-box h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.feature-box p {
  color: var(--muted);
}

/* ===== CTA ===== */

.cta-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: flex-start;
}

/* ===== CARDS ===== */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.card p {
  color: var(--muted);
}

/* ===== ABOUT & CONTACT ===== */

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel ul {
  margin-left: 20px;
  color: var(--muted);
}

.panel li {
  margin-bottom: 10px;
}

/* ===== FORMS ===== */

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(25, 169, 116, 0.2);
  border-color: var(--accent);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== FAQ STYLES ===== */

.faq-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.expand-all-btn {
  padding: 10px 18px;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.expand-all-btn:hover {
  background: var(--primary);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-question-line {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 16px;
}

.faq-question-line:hover {
  color: var(--primary);
}

.faq-question-line:last-child {
  border-bottom: none;
}

.faq-toggle-icon {
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question-line.expanded .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-expanded-container {
  display: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: slideDown 0.3s ease;
}

.faq-expanded-container.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-expanded-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 16px 0;
}

.faq-expanded-answer {
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

.faq-expanded-answer a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.faq-expanded-answer a:hover {
  text-decoration: underline;
}

.back-to-top {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== FOOTER ===== */

.footer {
  background: #0b1f33;
  color: rgba(255, 255, 255, 0.88);
  padding: 26px 0;
  text-align: center;
  margin-top: 20px;
}

.small-text {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .cards,
  .service-grid,
  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 14px 0;
  }

  .nav-links {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .nav-list {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .nav-list li {
    width: auto;
    text-align: center;
  }

  .hero,
  .page-hero,
  .section,
  .content-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .faq-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question-line {
    font-size: 15px;
    padding: 14px 0;
  }

  .faq-expanded-container {
    padding: 16px;
  }

  .faq-expanded-title {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .navbar {
    gap: 8px;
    padding: 12px 0;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .site-logo {
    height: 160px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-list li:not(:last-child)::after {
    content: '';
    margin: 0;
  }

  .nav-list a {
    font-size: 0.92rem;
  }

  .section,
  .content-section {
    padding: 58px 0;
  }

  .hero h1,
  .hero-copy h1 {
    font-size: 2rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}