/* ========================================
   1000sites - Design Tokens & Styles
   ======================================== */

/* ---- Local Fonts ---- */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-normal-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-normal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/lato-normal-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/montserrat-normal-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-normal-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-normal-700.woff2') format('woff2');
}

/* ---- CSS Variables ---- */
:root {
  --color-color1: #5889aa;
  --color-color2: #000000;
  --color-color3: #ececec;
  --color-color4: #ccd7da;
  --color-color5: #cb821b;
  --color-color6: #f2f2f2;
  --color-color7: #515151;
  --color-color8: #FFFFFF;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Lato', sans-serif;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-color7);
  background-color: var(--color-color8);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-color2);
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
p { margin: 0 0 1rem; }
a { color: var(--color-color1); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.col {
  flex: 1;
  padding: 0 0.5rem;
  min-width: 200px;
}
section { padding: 2rem 0; }

/* ---- Components ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-color1);
  color: var(--color-color8);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--color-color5); text-decoration: none; }
.img-wrap img { max-width: 100%; height: auto; display: block; }
.text-wrap { margin-bottom: 1rem; }
.btn-group { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.post-list, .page-list { list-style: none; padding: 0; }
.post-list li, .page-list li { margin-bottom: 0.5rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #0d1f3c 0%, var(--color-color1) 60%, #089ca1 100%);
  color: var(--color-color8);
  text-align: center;
  padding: 6rem 0 9rem;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: -3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  color: var(--color-color8);
  font-size: 64px;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  margin-bottom: 1.25rem;
}
.hero .lead {
  font-size: 24px;
  opacity: 0.92;
  margin: 0 auto 2rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--color-color8);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  text-decoration: none;
}
.btn-white {
  background: #fff;
  color: var(--color-color1);
}
.btn-white:hover {
  background: var(--color-color3);
  color: var(--color-color1);
  text-decoration: none;
}

/* ---- Navigation ---- */
.main-nav {
  background: #0d1f3c;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.logo {
  color: var(--color-color8);
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: var(--color-color8);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  display: block;
  font-weight: 500;
}
.nav-menu > li > a:hover { color: var(--color-color1); }
.has-submenu > a::after { content: " ▼"; font-size: 0.6em; opacity: 0.7; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-color2);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 100;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.submenu li a {
  color: var(--color-color8);
  text-decoration: none;
  padding: 0.4rem 1rem;
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
}
.submenu li a:hover { background: var(--color-color7); }
.has-submenu:hover .submenu { display: block; }

/* Nav CTA button */
.nav-cta {
  background: var(--color-color1);
  color: var(--color-color8) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--color-color5) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-color8);
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}

/* ---- Footer ---- */
.site-footer {
  background: #0d1f3c;
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  font-size: 1.4rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.75;
  margin: 0;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-color1); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-bottom .copy {
  opacity: 0.45;
  font-size: 0.82rem;
}
.site-footer a { color: var(--color-color1); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Forms ---- */
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 500; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.6rem;
  border: 1px solid var(--color-color4);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0.3rem;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--color-color1); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  font-size: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ---- Scroll to Top ---- */
#scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-color1);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .main-nav .container { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .menu-toggle { display: block !important; position: absolute; right: 1rem; top: 0.8rem; }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .has-submenu > a::after { float: right; margin-top: 0.3rem; }
  .submenu {
    position: static;
    display: none !important;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: auto;
  }
  .has-submenu.open .submenu { display: block !important; }
  .row { flex-direction: column; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero h1 { font-size: 32px; }
}

/* ---- Print ---- */
@media print {
  .main-nav, .site-footer, #scrollTop, .menu-toggle, .whatsapp-float {
    display: none !important;
  }
  body { font-size: 12pt; line-height: 1.4; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }
  a[href^="#"]::after, a[href^="javascript:"]::after { content: ""; }
  section { padding: 1rem 0; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-color1);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}
.section-header p {
  color: var(--color-color7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Stats ---- */
.stats {
  background: var(--color-color8);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
}
.stat-number {
  display: block;
  font-size: 52px;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-color1);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-color7);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Feature Cards ---- */
.features { background: var(--color-color6); padding-top: 5rem; }
.feature-card {
  background: var(--color-color8);
  border-radius: 8px;
  padding: 2rem;
  margin: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}
.feature-card h3 { margin-top: 0; }
.feature-card h3 a { color: var(--color-color2); text-decoration: none; }
.feature-card h3 a:hover { color: var(--color-color1); }
.feature-card p:last-child { margin-bottom: 0; }

/* ---- CTA Section ---- */
.cta {
  background: var(--color-color2);
  color: var(--color-color8);
  text-align: center;
  padding: 3rem 0;
}
.cta h2 { color: var(--color-color8); }
.cta .btn { margin: 0 0.5rem; }

/* ---- Article / Post Date ---- */
article .post-date { color: var(--color-color7); margin-bottom: 2rem; font-size: 0.9rem; }

/* ---- Icons (SVG sprite) ---- */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-outline { stroke-width: 1.5; }
.icon-filled { fill: currentColor; stroke: none; }
.icon-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Icon boxes for feature sections */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(88, 137, 170, 0.1);
  color: var(--color-color1);
}
.icon-box svg {
  width: 40px;
  height: 40px;
}

/* ---- Section Background Variants ---- */
section.bg-dark {
  background: var(--color-color2);
  color: var(--color-color8);
}
section.bg-dark h1,
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 {
  color: var(--color-color8);
}
section.bg-light {
  background: var(--color-color6);
}
section.bg-accent {
  background: var(--color-color1);
  color: var(--color-color8);
}
section.bg-accent h1,
section.bg-accent h2,
section.bg-accent h3,
section.bg-accent h4 {
  color: var(--color-color8);
}
section.bg-accent a {
  color: var(--color-color8);
}

/* ---- Better Cards ---- */
.feature-card {
  background: var(--color-color8);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin: 0.75rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid transparent;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(88,137,170,0.18);
  border-top-color: var(--color-color1);
}
.feature-card h3 { margin-top: 0; font-size: 22px; }
.feature-card h3 a { color: var(--color-color2); text-decoration: none; }
.feature-card h3 a:hover { color: var(--color-color1); }
.feature-card p { color: var(--color-color7); font-size: 0.95rem; }
.feature-card p:last-child { margin-bottom: 0; margin-top: 1.5rem; }
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(88,137,170,0.15) 0%, rgba(8,156,161,0.12) 100%);
  color: var(--color-color1);
  transition: background 0.25s;
}
.feature-card:hover .icon-box {
  background: linear-gradient(135deg, var(--color-color1) 0%, #089ca1 100%);
  color: #fff;
}

/* ---- CTA Section ---- */
.cta {
  background: linear-gradient(135deg, var(--color-color2) 0%, #1a1a1a 100%);
  color: var(--color-color8);
  text-align: center;
  padding: 4rem 0;
}
.cta h2 { color: var(--color-color8); margin-bottom: 0.5rem; }
.cta p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta .btn { margin: 0 0.5rem; }
.cta .btn:hover { background: var(--color-color5); }

/* ---- Content styling ---- */
.text-wrap h1, .text-wrap h2, .text-wrap h3,
.text-wrap h4, .text-wrap h5, .text-wrap h6 {
  margin-top: 1.5rem;
}
.text-wrap ul, .text-wrap ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.text-wrap li { margin-bottom: 0.35rem; }
.text-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

/* ---- Pain Points Section ---- */
.pain-points { padding: 4rem 0; }
.pain-card {
  background: var(--color-color8);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  margin: 0.75rem 0.5rem;
  border-left: 4px solid var(--color-color1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pain-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.pain-card h4 {
  font-size: 1rem;
  color: var(--color-color2);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--color-color7);
  margin: 0;
}

/* ---- CTA btn-outline inside dark section ---- */
.cta .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.cta .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--color-color8); font-size: 48px; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---- About page ---- */
.about-story { padding: 4rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; color: var(--color-color7); }
.about-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.value-item h4 { margin: 0 0 0.25rem; font-size: 1rem; color: var(--color-color2); }
.value-item p { margin: 0; font-size: 0.92rem; color: var(--color-color7); }
.about-sectors { padding: 4rem 0; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero h1 { font-size: 32px; }
}

/* ---- Process steps ---- */
.process { padding: 4rem 0; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-color3);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-color1), #089ca1);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(88,137,170,0.3);
}
.step-content h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.step-content p { color: var(--color-color7); margin-bottom: 0.75rem; }
.step-content p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
  .step-number { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ---- FAQ ---- */
.faq { padding: 4rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-color3);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin: 0 0 0.6rem; color: var(--color-color2); font-size: 1rem; }
.faq-item p { margin: 0; color: var(--color-color7); font-size: 0.95rem; }

/* ---- Hero trust line ---- */
.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

/* ---- Testimonials ---- */
.testimonials { padding: 4rem 0; }
.testimonial-card {
  background: var(--color-color8);
  border-radius: 12px;
  padding: 2rem;
  margin: 0.75rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--color-color1);
  display: flex;
  flex-direction: column;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--color-color7);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after { content: '\201D'; }
.testimonial-author { margin-top: auto; }
.author-name {
  display: block;
  font-weight: 700;
  color: var(--color-color2);
  font-size: 0.95rem;
}
.author-role {
  display: block;
  font-size: 0.82rem;
  color: var(--color-color7);
  opacity: 0.75;
  margin-top: 0.15rem;
}

/* ---- CTA hierarchy fix ---- */
.cta-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-color1);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(88,137,170,0.5);
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-primary:hover {
  background: var(--color-color5);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.cta .btn-outline {
  font-size: 0.92rem;
  opacity: 0.85;
}

/* ---- Footer location ---- */
.footer-location {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

/* ---- Social links ---- */
.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-color1);
  color: var(--color-color8);
  transition: background 0.2s, transform 0.2s;
}
.social-links a:hover {
  background: var(--color-color5);
  transform: scale(1.1);
  text-decoration: none;
}
.social-links svg {
  width: 20px;
  height: 20px;
}
