/* RDC Custom Footer Styles */


/* Newsletter Boxed Section */
.rdc-newsletter-boxed {
  width: 100%;
  background: #f4f8fb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 30px 0;
}

.newsletter-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  max-width: 1050px;
  width: 100%;
  padding: 32px 40px;
  gap: 40px;
}

.newsletter-image {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 120px;
}
.newsletter-image img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.newsletter-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0.5px;
}
.newsletter-subtitle {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 22px;
  line-height: 1.6;
}
.newsletter-button {
  display: inline-block;
  background: var(--rdc-blue, #0e7490);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 116, 144, 0.12);
}
.newsletter-button:hover {
  background: var(--rdc-green, #22c55e);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1024px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 28px 18px;
  }
  .newsletter-image {
    min-width: 120px;
    min-height: 80px;
  }
  .newsletter-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .rdc-newsletter-boxed {
    padding: 18px 0 12px 0;
  }
  .newsletter-inner {
    padding: 14px 6px;
    gap: 12px;
  }
  .newsletter-title {
    font-size: 1.1rem;
  }
  .newsletter-subtitle {
    font-size: 0.95rem;
  }
  .newsletter-button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .newsletter-image img {
    max-width: 120px;
  }
}

/* Main Footer */
.rdc-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Contact Column */
.footer-contact {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.contact-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.contact-phone svg,
.contact-email svg {
  flex-shrink: 0;
  color: var(--rdc-blue);
}

.contact-phone a,
.contact-email a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-phone a:hover,
.contact-email a:hover {
  color: var(--rdc-blue);
}

.contact-hours {
  margin: 15px 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-hours p {
  margin: 4px 0;
}

.contact-address {
  margin-top: 15px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-address p {
  margin: 4px 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--rdc-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--rdc-blue);
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  background: #020617;
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
}

.copyright svg {
  flex-shrink: 0;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--rdc-blue);
}

.legal-links .separator {
  color: #475569;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .rdc-cta-section {
    min-height: 250px;
  }
  
  .cta-content {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .cta-subtitle {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
  
  .rdc-footer {
    padding-top: 40px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-contact {
    padding-right: 0;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.25rem;
  }
  
  .cta-subtitle {
    font-size: 0.85rem;
  }
  
  .footer-logo img {
    height: 35px;
  }
  
  .social-links {
    justify-content: center;
  }
}