/* ===== GLOBAL STYLES ===== */
/* Font stack & base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
a {
  color: #333;
  transition: all .3s ease-in-out;
}
a:hover {
  color: #b8941f;
  transition: all .3s ease-in-out;
}
.royal-container {
  max-width: 1440px;
}

/* ===== BUTTON STYLES ===== */
/* Base button */
.royal-btn {
  padding: .6em 1em;
  border-radius: 5px; 
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
/* Button shine effect */
.royal-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.royal-btn:hover:before {
  left: 20%;
}
/* Button glass overlay */
.royal-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.royal-btn:hover {
  transform: translateY(-3px);
}
.royal-btn:hover:after {
  opacity: 0.6;
}

/* Button variants */
.royal-btn-primary {
  background-color: #C9A227 !important;
  border-color: #C9A227 !important;
}
.royal-btn-primary:hover {
  background-color: #b8941f !important;
  border-color: #b8941f !important;
}
.royal-btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
}
.royal-btn-white:hover {
  background-color: transparent;
  color: #ffffff;
}
.royal-btn-black {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.royal-btn-black:hover {
  background-color: #b8941f;
  border-color: #b8941f;
}
.royal-btn-default {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff !important;
}
.royal-btn-default:hover {
  background-color: #C9A227 !important;
  border-color: #C9A227 !important;
  color: #ffffff !important;
}

/* ===== HEADER STYLES ===== */
.royal-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 15px 0; 
}
.head-fixed { 
  background: rgba(26, 26, 26, 0.99);
}

/* Logo styles */
.royal-logo {
  overflow: hidden;
  height: 45px;
  line-height: 45px; 
  transition: all .5s ease;
}
 
.royal-logo a {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
 
.royal-logo img {
  height: 45px;
  width: auto; 
  transition: all .5s ease;
}
.head-fixed .royal-logo { 
  height: 38px;
  line-height: 38px;
   transition: all .5s ease;
}  
.head-fixed .royal-logo img{ 
  height: 38px; 
  transition: all .5s ease;
}  
.royal-logo a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  z-index: 2;
  animation: logoShine 3s infinite;
}
@keyframes logoShine {
  0%, 20% { left: -100%; }
  50%, 70% { left: 100%; }
  100% { left: 100%; }
}

/* Navigation menu */ 
.royal-navmenu-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-right: 30px;
  margin: 0;
}
.royal-navmenu-item {
  display: inline-block;
  position: relative;
}
.royal-navmenu-item > a {
  display: block;
  color: #fff;
  font-weight: 500;
  padding: .7em 1em;
  border-radius: 5px;
  font-size: 15px; 
  transition: all .5s ease;
}
.head-fixed .royal-navmenu-item > a { 
  padding: .5em 1em; 
  transition: all .5s ease;
}
.royal-navmenu-item > a:hover,
.royal-navmenu-item > a.royal-active {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown menu */
.royal-navmenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #2a2a2a;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}
/* Dropdown arrow */
.royal-navmenu-dropdown:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 15px;
  border: 8px solid transparent;
  border-bottom-color: #2a2a2a;
  z-index: 1001;
}
.royal-navmenu-item:hover .royal-navmenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.royal-navmenu-dropdown li {
  display: block;
}
.royal-navmenu-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  transition: all 0.2s ease;
  text-wrap: nowrap;
  font-size: 14px;
}
.royal-navmenu-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.royal-head-btn .royal-btn {
  font-weight: bold;
  padding: .8em 1em;
  transition: all .5s ease;
  font-size: 15px;
}
.head-fixed .royal-head-btn .royal-btn {
  padding: .6em 1em;
  transition: all .5s ease;
}

/* ===== BANNER SECTION ===== */
/* Main banner container */
.royal-page-banner {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
/* Animated gradient overlay */
.royal-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(-8deg, hsla(0, 0%, 0%, 0.9) 40%, hsla(0, 0%, 0%, 0.9) 30%, hsla(45, 66%, 42%, 0.9) 40.1%, hsla(45, 66%, 42%, 0.9) 100%);
  background-size: 200% 200%;
  z-index: 1;
  animation: gradientMove 15s ease infinite;
  transition: transform 1s ease, filter 1s ease;
}
.royal-page-banner:hover::before {
  transform: scale(1.02);
  filter: brightness(1.1);
}
/* Background image */
.royal-page-banner-bg {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  animation: backgroundBreath 8s ease-in-out infinite;
  transition: transform 1.2s ease-out, filter 1.2s ease-out;
}
.royal-page-banner:hover .royal-page-banner-bg {
  transform: scale(1.05);
  filter: brightness(1.15);
}
/* Banner content */
.royal-page-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.royal-page-banner h1,
.royal-page-banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}
.royal-page-banner p {
  text-align: center;
  opacity: 0.95;
  font-size: 16px;
}
/* Breadcrumb */
.royal-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
}
.royal-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 3px 6px;
}
.royal-breadcrumb a:hover {
  color: #fff;
}
.royal-breadcrumb .royal-active {
  color: #fff;
  font-weight: 600;
}
/* Banner animations */
@keyframes backgroundBreath {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.1); }
}
@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.royal-page-article{
  padding: 30px 0 0;
}
/* ===== SECTION STYLES ===== */
.royal-section-header {
  text-align: center;
  margin-bottom: 30px;
}
.royal-section-title {
  font-size: 36px; 
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.royal-section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #333;
  margin: 15px auto 0;
  border-radius: 2px;
}
.royal-section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 15px auto 0;
}

/* Category navigation */
.royal-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 30px;
}
.royal-category-nav a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f6f6f6;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.royal-category-nav a:hover,
.royal-category-nav a.royal-active {
  background-color: #C9A227;
  color: white;
  border-color: #b8941f;
  font-weight: 600;
  box-shadow: 0 4px 12px #c9a32770;
}

/* Thumbnail component */
.royal-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.royal-thumb-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.royal-thumb-wrapper a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.royal-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.royal-thumb-wrapper:hover .royal-thumb {
  transform: scale(1.08);
}
/* Gold gradient overlay */
.royal-thumb-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(184, 148, 31, 0.1) 100%);
  opacity: 0;
  transition: all .3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.royal-thumb-wrapper:hover::before {
  opacity: 1;
}

/* ===== ARTICLE DETAIL PAGE ===== */
.royal-article-content {
  padding: 60px 0;
  overflow: hidden;
}
.royal-article-header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}
.royal-article-title {
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 15px;
}
.royal-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #666;
  flex-wrap: wrap;
}
.royal-article-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  padding: 3px 6px;
  background: #f6f6f6;
  border-radius: 2px;
  transition: all 0.3s ease;
  color: #999;
}
.royal-article-meta-item i {
  color: #b8941f;
}
.royal-article {
  overflow: hidden;
  padding: 60px;
  margin-top: 60px;
  border-radius: 15px;
  border: 1px solid #f6f6f6;
  box-shadow: 6px 15px 30px rgba(0, 0, 0, 0.03);
}
.royal-article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.royal-article-navigation {
  margin-top: 30px;
  padding-top: 30px;
}
.royal-article-nav-btn {
  padding: 15px;
  display: block;
  border: 1px solid #e6e6e6;
  margin-bottom: 30px;
  border-radius: 6px;
}
.royal-article-nav-btn:hover {
  border-color: #b8941f;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.royal-article-nav-btn.royal-article-nav-disabled {
  color: #666;
  cursor: not-allowed;
  background: #f6f6f6;
  opacity: 0.6;
}
.royal-article-nav-btn.royal-article-nav-disabled:hover {
  border-color: #e6e6e6;
  box-shadow: none;
  transform: none;
}
.royal-article-nav-title {
  font-size: 18px;
  font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.royal-contact-section {
  background: #1a1a1a;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.royal-contact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, hsla(45, 66%, 42%, 0.3) 0%, hsla(45, 66%, 42%, 0.2) 30%, hsla(45, 66%, 42%, 0.03) 60%, transparent 85%);
  border-radius: 50%;
  filter: blur(40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatCenter 5s infinite ease-in-out;
  z-index: 1;
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -52%) scale(1.1); opacity: 1; }
}
.royal-contact-section:hover::before {
  animation-duration: 12s;
  filter: blur(50px) brightness(1.3);
  background: radial-gradient(circle at center, hsla(45, 66%, 42%, 0.45) 0%, hsla(45, 66%, 42%, 0.3) 30%, hsla(45, 66%, 42%, 0.15) 60%, transparent 85%);
}
.royal-contact-section .royal-section-title {
  color: #fff;
}
.royal-contact-section .royal-section-title::after {
  display: none;
}
.royal-contact-section .royal-section-subtitle {
  max-width: 500px;
  color: #999;
  margin-bottom: 30px;
}
.royal-contact-section .royal-btn {
  font-size: 18px;
}

/* ===== FOOTER STYLES ===== */
.royal-foot {
  background: #0D0D0D;
  padding: 60px 0 15px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
/* Flex container with gap simulation */
.royal-foot-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.royal-foot-content > * {
  margin: 15px;
}
/* Footer logo */
.royal-foot-logo {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
  padding-bottom: 30px;

}
.royal-foot-logo img {
  max-height: 90px;
  width: auto;
  transition: all 0.3s ease;
}
.royal-foot-logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
/* Footer navigation */
.royal-footnav {
  -ms-flex: 3;
  flex: 3;
  min-width: 300px;
}
.royal-footnav-header {
  margin-bottom: 15px;
}
.royal-footnav-header a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}
.royal-footnav-header a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #C9A227;
  transition: width 0.3s ease;
}
.royal-footnav-header a:hover {
  color: #C9A227;
}
.royal-footnav-header a:hover:after {
  width: 100%;
}
.royal-footnav-sub {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.royal-footnav-sub .royal-footnav-sub-link {
  margin-bottom: 5px;
}
.royal-footnav-sub .royal-footnav-sub-link:last-child {
  margin-bottom: 0;
}
.royal-footnav-sub-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0 5px 15px;
  position: relative;
}
.royal-footnav-sub-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(201, 162, 39, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.royal-footnav-sub-link:hover {
  color: #C9A227;
  transform: translateX(5px);
}
.royal-footnav-sub-link:hover:before {
  background: #C9A227;
  transform: translateY(-50%) scale(1.2);
}
/* Footer contact */
.royal-foot-contact {
  -ms-flex: 1;
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.royal-foot-contact-title {
  font-size: 20px;
  font-weight: 600;
  color: #C9A227;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.royal-foot-contact-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #C9A227;
}
.royal-foot-contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.royal-foot-contact-item {
  margin-bottom: 15px;
}
.royal-foot-contact-item:last-child {
  margin-bottom: 0;
}
.royal-foot-contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start; 
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.royal-foot-contact-item i {
  color: #C9A227; 
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: 10px;
}
.royal-foot-contact-item span {
  -ms-flex: 1;
  flex: 1;
}
.royal-foot-contact-item:hover {
  color: #fff;
}
.royal-foot-contact-item:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.foot-toggle{
  display: none;
}
/* Copyright */
.royal-copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.royal-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.royal-copyright a {
  color: #C9A227;
  text-decoration: none;
  transition: all 0.3s ease;
}
.royal-copyright a:hover {
  color: #fff;
  text-decoration: underline;
}
/* GoTop button */
.royal-gotop {
  border-radius: 5px;
  bottom: 30px;
}

/* ===== IE SPECIFIC FIXES ===== */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .royal-foot-content {
    margin: 0;
  }
  .royal-footnav {
    margin-right: 30px;
  }
  .royal-foot-contact {
    margin-left: 30px;
  }
  .royal-head .royal-container {
    display: -ms-flexbox;
    -ms-flex-pack: justify;
  }
  .royal-navmenu {
    display: -ms-flexbox;
    -ms-flex-align: center;
  }
}

/* ===== PROGRESSIVE ENHANCEMENT ===== */
/* Animation support */
@supports (animation: logoShine 3s infinite) {
  .royal-logo a:before {
    animation: logoShine 3s infinite;
  }
}
/* Modern browser gap support */
@supports (gap: 15px) {
  .royal-foot-content {
    gap: 15px;
    margin: 0;
    padding: 0 0 15px;
  }
  .royal-foot-content > * {
    margin: 0;
  }
  .royal-footnav-sub {
    gap: 5px;
  }
  .royal-footnav-sub .royal-footnav-sub-link {
    margin-bottom: 0;
  }
 
  .royal-foot-contact-item {
    margin-bottom: 0;
  }
  .royal-copyright p{
    font-size: 12px;
  }
}
/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .royal-page-banner::before,
  .royal-page-banner-bg {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 992px) {
  /* Mobile menu toggle */
  .royal-mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 17px;
    right: 15px;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
  }
  .royal-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: 0.3s;
  }
  .royal-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .royal-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .royal-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  /* Mobile logo */
 
  .royal-logo {
    display: flex;
    align-items: center; 
  }
  .royal-logo  {
    height: 30px!important;
    line-height: 30px; 
  }
  .royal-logo img {
    height: 30px!important;
  }
  /* Mobile navigation */
  .royal-navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #1a1a1a;
    padding: 60px 0px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: block;
  }
  .royal-navmenu.active {
    right: 0;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  }
  .royal-navmenu-item > a:hover,
  .royal-navmenu-item > a.royal-active {
     color: #C9A227;
    background: transparent;
  }
  .royal-navmenu-content {
    flex-direction: column;
    padding: 0 20px;
  }
  .royal-navmenu-item {
    display: block;
    width: 100%;
  }
  .royal-navmenu-item > a {
    padding: 10px;
    display: flex;
    justify-content: space-between;
  }
  .royal-navmenu-item.has-children > a:after {
    content: '›';
    transform: rotate(90deg);
    transition: 0.3s;
  }
  .royal-navmenu-item.has-children.active > a:after {
    transform: rotate(-90deg);
  }
  .royal-navmenu-dropdown {
    position: static;
    width: 100%;
    transition: max-height 0.3s ease;
    box-shadow: none;
    padding: 0 0 0 20px;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: translateY(0px);
  }
  .royal-section-header{
    margin-bottom: 15px;
  }
  .royal-section-title::after{
    width: 30px;
    height: 3px;
  }
  .royal-section-title{
    font-size: 24px;
  }
  .royal-section-subtitle{
    font-size: 14px;
    margin: 0 auto;
  }
  .royal-contact-section .royal-section-subtitle{
    margin: 0 auto 15px;
  }
  body.menu-open {
    overflow: hidden;
  }
  .royal-head {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    background: #1a1a1a;
  }
  body {
    padding-top: 50px;
  }
  .royal-head-btn {
    display: none;
  }
  /* Mobile banner */
  .royal-page-banner {
    min-height: 240px;
  }
  .royal-page-banner h1, .royal-page-banner h2{
    font-size: 24px;
  }
  .royal-page-banner p{
    font-size: 14px;
    margin: 0;
  }
  .royal-page-banner::before {
    animation-duration: 20s;
  }
  .royal-page-banner-bg {
    animation-duration: 12s;
  }
  .royal-contact-section{
    padding: 30px 0;
  }
  .royal-contact-section .royal-btn{
    font-size: 14px;
  }
  .royal-category-nav{
    margin: 15px 0;
    flex-wrap: nowrap;
    justify-content: left;
    overflow: scroll;
  }
  .royal-category-nav a{
    text-wrap: nowrap;
    border-radius: 5px;
  }
  .royal-page-banner-content{
    margin-top: -15px;
  }
  /* Mobile footer */
  .royal-foot{
    padding: 30px 0 15px;
  }
  .royal-footnav {
    width: 100%;
  }
  .royal-footnav-list {
    display: block !important;
    width: 100% !important;
  }
  .royal-footnav-item {
    width: 100% !important; 
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .royal-footnav-header {
    position: relative; 
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .royal-footnav-header a {
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    flex: 1;
    padding: 0;
    margin: 0;
  }
  .royal-footnav-header a::after {
    display: none;
  }
  .royal-foot-logo{
    padding-bottom: 0;
  }
  .royal-footnav-header .foot-toggle {
    color: #C9A227;
    font-size: 16px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s; 
    display: block;
  }
  
  .royal-footnav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
  }
  .royal-footnav-item.foot-active .royal-footnav-sub {
    max-height: 500px;
  }
  .royal-footnav-sub-link {
    display: block;
    padding:10px 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    text-decoration: none; 
    padding-left: 15px;
    margin-left: -2px;
    transition: all 0.3s;
  }
  .royal-footnav-sub-link:hover {
    color: #C9A227;
    border-left-color: #C9A227;
    padding-left: 20px;
  }
  /* Mobile footer logo */
  .royal-foot-logo img {
    max-height: 48px;
  }
  
}
