/* ===== Royal Taste Footer ===== */
/* ===== Royal Taste Footer ===== */
.rt-footer {
  background: linear-gradient(135deg, #0f2a1d, #173f2b);
  color: #ffffff;
}

.rt-footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 18px;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 1.2fr;
  gap: 30px;
}

/* Logo Column */
.rt-footer-logo-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rt-footer-logo {
  max-width: 170px;
  margin-bottom: 12px;
}

.rt-footer-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #c8f0d2;
}

/* Titles */
.rt-footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.rt-footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #6aa316;
  margin-top: 6px;
  border-radius: 2px;
}

/* Text */
.rt-footer-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

/* Contact */
.rt-footer-label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #c8f0d2;
}

.rt-footer-phone {
  font-size: 20px;
  font-weight: 800;
  color: #6aa316;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.rt-footer-phone:hover {
  color: #9fe870;
}

.rt-footer-time p {
  margin: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* Menu & Partners */
.rt-footer-menu,
.rt-footer-partners {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rt-footer-menu li,
.rt-footer-partners li {
  margin-bottom: 10px;
}

.rt-footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14.5px;
}

.rt-footer-menu a:hover {
  color: #6aa316;
}

/* Bottom Bar */
.rt-footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 14px 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 992px) {
  .rt-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .rt-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rt-footer-logo-col {
    align-items: center;
  }
}





 /* ===== Royal Taste About (Scoped) ===== */
    .rt-about-wrap { width: 100%; }
    .rt-about-hero {
      width: 100%;
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-radius: 0;
    }

    .rt-about-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
      z-index:1;
    }

    .rt-about-hero-bg {
      position:absolute;
      inset:0;
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
      z-index:0;
    }

    .rt-about-hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 70px 0;
    }

    .rt-about-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 18px;
    }

    .rt-about-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      color: #fff;
      font-size: 14px;
      letter-spacing: .2px;
      margin-bottom: 14px;
    }

    .rt-about-title {
      color: #fff;
      font-size: clamp(30px, 3.2vw, 54px);
      line-height: 1.08;
      margin: 0 0 12px;
      font-weight: 800;
    }

    .rt-about-sub {
      color: rgba(255,255,255,.92);
      font-size: 18px;
      max-width: 720px;
      margin: 0 0 22px;
    }

    .rt-about-hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

    .rt-about-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      transition: transform .15s ease, opacity .15s ease;
    }

    .rt-about-btn:hover { transform: translateY(-1px); opacity: .95; }

    .rt-about-btn-primary { background: #6aa316; color: #fff; }
    .rt-about-btn-ghost {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
    }

    .rt-about-section {
      padding: 56px 0;
    }

    .rt-about-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
      align-items: start;
    }

    .rt-about-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 16px;
      padding: 22px;
      box-shadow: 0 10px 28px rgba(0,0,0,.06);
    }

    .rt-about-h2 {
      margin: 0 0 10px;
      font-size: 26px;
      font-weight: 800;
      color: #123;
    }

    .rt-about-p {
      margin: 0 0 12px;
      color: rgba(17,34,51,.85);
      line-height: 1.65;
      font-size: 16px;
    }

    .rt-about-p strong { color: #123; }

    .rt-about-list {
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .rt-about-li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(17,34,51,.85);
      line-height: 1.55;
    }

    .rt-about-bullet {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(106,163,22,.14);
      border: 1px solid rgba(106,163,22,.28);
      flex: 0 0 22px;
      margin-top: 2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: #6aa316;
      font-size: 14px;
    }

    .rt-about-miniGrid {
      display: grid;
      gap: 12px;
    }

    .rt-about-mini {
      border-radius: 14px;
      padding: 16px;
      border: 1px solid rgba(0,0,0,.08);
      background: linear-gradient(180deg, rgba(106,163,22,.08), rgba(255,255,255,1));
    }

    .rt-about-mini h3 {
      margin: 0 0 6px;
      font-size: 16px;
      font-weight: 800;
      color: #123;
    }

    .rt-about-mini p {
      margin: 0;
      color: rgba(17,34,51,.85);
      line-height: 1.55;
      font-size: 14.5px;
    }

    .rt-about-products {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .rt-about-prod {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.08);
      background: #fff;
      display: grid;
      grid-template-rows: 130px auto;
    }

    .rt-about-prod .rt-about-prodImg {
      width: 100%;
      height: 130px;
      object-fit: cover;
      display: block;
      background: #f3f4f6;
    }

    .rt-about-prod .rt-about-prodText {
      padding: 12px;
      color: rgba(17,34,51,.85);
      font-size: 14px;
      line-height: 1.4;
    }

    .rt-about-ctaStrip {
      margin-top: 22px;
      border-radius: 16px;
      padding: 18px;
      border: 1px solid rgba(0,0,0,.08);
      background: linear-gradient(90deg, rgba(106,163,22,.12), rgba(255,255,255,1));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .rt-about-ctaStrip strong { color: #123; }

    @media (max-width: 992px) {
      .rt-about-grid { grid-template-columns: 1fr; }
      .rt-about-products { grid-template-columns: repeat(2, 1fr); }
      .rt-about-hero { min-height: 360px; }
    }

    @media (max-width: 560px) {
      .rt-about-products { grid-template-columns: 1fr; }
    }
	
	
	
.rt-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  margin-top: 30px;
  background: linear-gradient(135deg, #1f8f3a, #43c26b);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(31, 143, 58, 0.35);
  transition: all 0.3s ease;
}

.rt-view-more-btn span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.rt-view-more-btn:hover {
  background: linear-gradient(135deg, #176b2c, #2ea85a);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 143, 58, 0.45);
}

.rt-view-more-btn:hover span {
  transform: translateX(6px);
}

.rt-view-more-btn:active {
  transform: scale(0.97);
}





/* Saadco Group Section */
.saadco-group-wrap {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0e3b2e, #414141);
  color: #ffffff;
}

.saadco-group-inner {
  max-width: 1200px;
  margin: auto;
}

.saadco-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.saadco-title {
  font-size: 38px;
  margin-bottom: 20px;
}

.saadco-desc {
  font-size: 17px;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 15px;
  color: #e5f3ec;
}

.saadco-companies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.saadco-companies div {
  background: rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
}

.saadco-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background: #7cc63f;
  color: #0e3b2e;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.saadco-btn:hover {
  background: #6ab233;
  transform: translateY(-2px);
}








	
	
