/* =========================
   Base Reset & Variables
   ========================= */
:root {
  --color-primary: #39B7AB;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-light: #f7f7f7;
  --color-border: #e6e6e6;
  --color-white: #ffffff;
  --color-black: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   Typography
   ========================= */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-white);
}

h1, h2, h3 {
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }

p { font-size: 16px; margin-top: 10px; }

/* =========================
   Layout Helpers
   ========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  background: var(--color-black);
  width: 100%;
  z-index: 1000;
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
}

.site-header .logo img {
  width: 200px;
  height: auto;
  display: block;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 6px;
  margin-left: 28px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.nav a:first-child { margin-left: 0; }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a:hover,
.nav a.active { color: var(--color-primary); }

.socials {
  display: flex;
  align-items: center;
}

.socials a {
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  padding-bottom: 6px;
  margin-left: 28px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.socials a:first-child { margin-left: 0; }

.socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.socials a:hover::after,
.socials a.active::after { width: 100%; }
.socials a:hover,
.socials a.active { color: var(--color-primary); }

/* =========================
   Page Title
   ========================= */
.page-title {
  padding: 90px 0 70px;
  text-align: center;
  background: var(--color-light);
}

.page-title h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  color: #555;
}

.breadcrumb a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: darken(var(--color-primary), 10%);
}

.breadcrumb span {
  margin: 0 5px;
  color: #777;
}


/* =========================
   Section Titles
   ========================= */
.section-title {
  text-align: center;
}

/* =========================
   Footer
   ========================= */
.site-footer{
	padding-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: none;
}

.footer-left img {
  width: 400px;
  height: auto;
  display: block;
}

.footer-center h4,
.footer-center p {
  margin: 4px 0;
}

.footer-right .footer-socials {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.footer-socials a {
  position: relative;
  text-decoration: none;
  color: var(--color-black);
  font-size: 28px;
  padding-bottom: 6px;
  margin-left: 28px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.footer-socials a:first-child { margin-left: 0; }

.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.footer-socials a:hover::after,
.footer-socials a.active::after { width: 100%; }
.footer-socials a:hover,
.footer-socials a.active { color: var(--color-primary); }

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  color: var(--color-black);
  opacity: 0.7;
}

/* =========================
   Responsive Header/Footer
   ========================= */
@media (max-width: 992px) {
  .header-inner {
    justify-content: center;
    gap: 16px;
  }

  .header-links {
    justify-content: center;
    gap: 16px;
  }

  .socials a, .footer-socials a {
    margin-left: 16px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .header-inner, .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-center, .footer-right {
    margin-top: 20px;
  }

  .footer-left img {
    width: 140px;
  }
}

/* =========================
   Buttons (common)
   ========================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 13px 34px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  transition: all 0.2s ease;
}

.btn-primary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* =========================
   Dividers
   ========================= */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: 0px auto;
  border-radius: 2px;
}