:root {
  --cat-navy: #001a43;
  --cat-navy-dark: #00112d;
  --cat-blue: #0057d9;
  --cat-blue-light: #2563eb;
  --cat-green: #16a34a;
  --cat-green-soft: #8bc53f;
  --cat-white: #ffffff;
  --cat-text-light: #dbeafe;
  --cat-text-muted: #b8c7dc;
  --cat-font-head: 'Montserrat', sans-serif;
  --cat-font-body: 'Inter', system-ui, sans-serif;
}

.cat-footer-wrapper {
  position: relative;
  background-color: var(--cat-navy);
  background: radial-gradient(circle at 100% 0%, rgba(0,87,217,0.15) 0%, transparent 40%), var(--cat-navy);
  font-family: var(--cat-font-body);
  color: var(--cat-text-muted);
  overflow: hidden;
  padding-bottom: 40px;
}

.cat-footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Top CTA */
.cat-footer-cta {
  background: linear-gradient(90deg, var(--cat-green-soft) 0%, var(--cat-blue) 40%, var(--cat-navy) 100%);
  border-radius: 0 0 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
  position: relative;
  top: 0;
}

.cat-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cat-cta-icon-box {
  width: 60px;
  height: 60px;
  background: var(--cat-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cat-cta-icon-box svg {
  width: 30px;
  height: 30px;
}

.cat-cta-text h3 {
  font-family: var(--cat-font-head);
  color: var(--cat-white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.cat-cta-text p {
  color: var(--cat-text-light);
  margin: 0;
  font-size: 15px;
}

.cat-cta-btn {
  background-color: var(--cat-green);
  color: var(--cat-white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cat-cta-btn svg {
  width: 20px;
  height: 20px;
}

.cat-cta-btn:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  color: var(--cat-white);
}

/* Main Footer Grid */
.cat-main-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.cat-col {
  display: flex;
  flex-direction: column;
}

.cat-logo {
  max-width: 230px;
  margin-bottom: 20px;
}

.cat-divider-sm {
  width: 40px;
  height: 3px;
  background-color: var(--cat-green);
  margin-bottom: 20px;
}

.cat-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cat-socials {
  display: flex;
  gap: 12px;
}

.cat-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cat-green-soft);
  border-radius: 50%;
  color: var(--cat-white);
  transition: all 0.3s ease;
}

.cat-socials a svg {
  width: 16px;
  height: 16px;
}

.cat-socials a:hover {
  background-color: var(--cat-green);
  border-color: var(--cat-green);
  transform: translateY(-3px);
}

/* Titles */
.cat-col-title {
  font-family: var(--cat-font-head);
  color: var(--cat-white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px 0;
  position: relative;
  padding-bottom: 10px;
}

.cat-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--cat-green);
}

.cat-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--cat-green-soft);
  border-radius: 6px;
  color: var(--cat-green-soft);
}

.cat-title-icon svg {
  width: 14px;
  height: 14px;
}

/* Links List */
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  margin-bottom: 12px;
}

.cat-list a {
  color: var(--cat-text-light);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cat-arrow {
  color: var(--cat-green);
  margin-right: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cat-list a:hover {
  color: var(--cat-white);
  transform: translateX(5px);
}

.cat-list a:hover .cat-arrow {
  transform: translateX(2px);
}

/* Contact List */
.cat-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.cat-contact-link {
  color: var(--cat-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cat-contact-link:hover {
  color: var(--cat-white);
}

.cat-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--cat-text-muted);
  border-radius: 50%;
  color: var(--cat-white);
  flex-shrink: 0;
}

.cat-contact-icon svg {
  width: 14px;
  height: 14px;
}

/* Bottom Area */
.cat-footer-bottom {
  margin-top: 20px;
}

.cat-bottom-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.cat-copyright-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cat-decor-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cat-green));
  position: relative;
  max-width: 200px;
}

.cat-decor-line.right {
  background: linear-gradient(-90deg, transparent, var(--cat-green));
}

.cat-dot {
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--cat-green);
  border-radius: 50%;
}

.cat-decor-line.right .cat-dot {
  left: 0;
  right: auto;
}

.cat-copy-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--cat-text-light);
}

.cat-shield {
  color: var(--cat-green);
  display: flex;
  align-items: center;
}

.cat-shield svg {
  width: 16px;
  height: 16px;
}

/* Background Decoration */
.cat-bg-decor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.01) 10px, rgba(255,255,255,0.01) 20px);
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .cat-main-footer {
    grid-template-columns: 1fr 1fr;
  }
  .cat-footer-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-radius: 0 0 24px 24px;
    padding: 30px;
  }
  .cat-cta-left {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .cat-main-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cat-logo {
    max-width: 210px;
  }
  .cat-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .cat-copyright-area {
    flex-direction: column;
    text-align: center;
  }
  .cat-decor-line {
    display: none;
  }
}
