/* =====================================
   Ratnadeep Footer Variables
===================================== */
.ratnadeep-footer {
  --primary-color: #000000;
  --secondary-color: #666666;
  --accent-color: #cc4b24;
}

/* =====================================
   Global Footer Reset
===================================== */
.ratnadeep-footer,
.ratnadeep-footer * {
  box-sizing: border-box;
  color: #000000 !important;
}

/* =====================================
   Footer Wrapper
===================================== */
.ratnadeep-footer-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 110px 20px 20px;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  text-align: center;
}

/* =====================================
   Logo
===================================== */
.ratnadeep-footer .logo {
  max-width: clamp(180px, 25vw, 350px);
  width: 100%;
  height: auto;
}

/* =====================================
   Tagline
===================================== */
.ratnadeep-footer .tagline {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 500;
  margin: 15px 0;
}

/* =====================================
   Social Icons
===================================== */
.ratnadeep-footer .social-icons {
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: clamp(15px, 2vw, 30px);
  flex-wrap: wrap;
}

.ratnadeep-footer .social-icons a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.ratnadeep-footer .social-icons i {
  transition: color 0.3s ease;
}

.ratnadeep-footer .social-icons a:hover,
.ratnadeep-footer .social-icons a:hover i {
  color: var(--accent-color) !important;
}

/* =====================================
   Footer Links
===================================== */
.ratnadeep-footer .footer-links {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: bold;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
}

.ratnadeep-footer .footer-links a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.ratnadeep-footer .footer-links a:hover {
  color: var(--accent-color) !important;
}

.ratnadeep-footer .footer-links span {
  color: var(--secondary-color) !important;
}

/* =====================================
   Copyright
===================================== */
.ratnadeep-footer .copyright {
  font-size: clamp(12px, 1.4vw, 16px);
  margin: 10px 0;
}

.ratnadeep-footer .copyright a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.ratnadeep-footer .copyright a:hover {
  color: var(--accent-color) !important;
}

/* =====================================
   Mobile Adjustments
===================================== */
@media (max-width: 600px) {
  .ratnadeep-footer-wrapper {
    padding: 15px;
  }

  .ratnadeep-footer .logo {
    max-width: 200px;
  }

  .ratnadeep-footer .tagline {
    font-size: 14px;
    margin: 10px 0;
  }

  .ratnadeep-footer .social-icons {
    font-size: 18px;
    gap: 12px;
    margin: 15px 0;
  }

  .ratnadeep-footer .footer-links {
    font-size: 12px;
    gap: 8px 12px;
    margin: 12px 0;
  }

  .ratnadeep-footer .copyright {
    font-size: 11px;
    margin: 8px 0;
  }
}

/* =====================================
   Footer CTA (Conflict-Safe)
===================================== */

.ratnadeep-footer .cta-wrapper {
  width: 90%;
  margin: 30px auto 10px;
  padding: 30px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.ratnadeep-footer .cta-row {
  display: flex;
  gap: 20px;
}

.ratnadeep-footer .cta-btn {
  flex: 1;
  text-align: center;
  padding: 18px 10px;
  background: linear-gradient(180deg, #e15a32, #cc4b24);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;

  box-shadow:
    0 6px 0 #9f3a1c,
    0 10px 18px rgba(0, 0, 0, 0.4);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Ensure inner text remains white */
.ratnadeep-footer .cta-btn * {
  color: #ffffff !important;
}

.ratnadeep-footer .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #9f3a1c,
    0 14px 22px rgba(0, 0, 0, 0.5);
}

.ratnadeep-footer .cta-btn:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #9f3a1c,
    0 6px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .ratnadeep-footer .cta-row {
    flex-direction: column;
  }

  .ratnadeep-footer .cta-btn {
    font-size: 15px;
  }
}

/* =====================================
   FORCE RATNADEEP FOOTER LAYOUT
   (OceanWP override)
===================================== */

body footer.ratnadeep-footer {
  width: 100%;
  background: #ffffff;
}

body footer.ratnadeep-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* =====================================
   CTA BAR (MATCHES REAL DOM)
===================================== */

body footer.ratnadeep-footer .footer-cta {
  width: 90%;
  margin: 30px auto 0;
  padding: 30px 20px;
  display: flex;
  gap: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
  box-shadow:
    0 12px 25px rgba(0,0,0,0.45),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

body footer.ratnadeep-footer .footer-cta a {
  flex: 1;
  padding: 18px 12px;
  background: linear-gradient(180deg, #e15a32, #cc4b24);
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;

  box-shadow:
    0 6px 0 #9f3a1c,
    0 10px 18px rgba(0,0,0,0.4);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body footer.ratnadeep-footer .footer-cta a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #9f3a1c,
    0 14px 22px rgba(0,0,0,0.5);
}

body footer.ratnadeep-footer .footer-cta a:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #9f3a1c,
    0 6px 10px rgba(0,0,0,0.4);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  body footer.ratnadeep-footer .footer-cta {
    flex-direction: column;
  }
}

