:root {
  --deep-blue: #1b2a41;
  --coral-red: #ff6b6b;
  --light-bg: #f7f7f7;
  --text-muted: #64748b;
  --card-bg: #f9fafb;
  --border-soft: #e5e7eb;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: var(--deep-blue);
  line-height: 1.55;
}

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

/* =========================
   Global Header
========================= */

.site-header {
  background: #ffffff;
}

.header-content {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  height: 80px;
}

/* Logo */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #ff6b6b;
}

/* Contact Button */
.btn-contact {
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #1b2a41 100%
  );
  color: #f7f7f7;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ---------------- SECTION BASE ---------------- */
section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ---------------- CTA BUTTON ---------------- */
.btn-primary {
  background: linear-gradient(135deg, var(--deep-blue), var(--coral-red));
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--deep-blue); /* single source of truth */
  color: #e5e7eb;
}
.site-footer a {
  color: #e5e7eb;
  font-size: 13px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--coral-red);
}

/* CTA strip */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 72px 40px; /* increased vertical spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta-inner h2 {
  font-size: 34px;
  font-weight: 700;
}


.footer-cta-btn {
  background: #ffffff;
  color: #1b2a41 !important;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  opacity: 1; /* force visibility */
}


/* Main footer */
.footer-main {
  padding: 72px 40px; /* more vertical balance */
}


.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff6b6b;
}

/* Social */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1) contrast(1.2);
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icons img:hover {
  transform: translateY(-3px);
  opacity: 1;
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
