/* ==========================================================================
   Ruby Stones Pvt. Ltd. - Luxury Corporate Design System
   Primary: #111111 | Secondary: #2F2F2F | Gold: #C9A227 | Background: #FFFFFF
   Fonts: Playfair Display (Headings) | Poppins (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #111111;
  --secondary: #2F2F2F;
  --gold: #C9A227;
  --gold-hover: #B18D1D;
  --gold-light: rgba(201, 162, 39, 0.1);
  --bg-white: #FFFFFF;
  --bg-light: #F8F8F8;
  --border-color: #EAEAEA;
  --text-color: #555555;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Reset & Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-white);
  line-height: 1.75;
  font-size: 0.98rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

p {
  margin-bottom: 1.25rem;
}

/* Custom Selection */
::selection {
  background-color: var(--gold);
  color: #ffffff;
}

/* Section Background Alternations */
.bg-white-section {
  background-color: var(--bg-white);
}

.bg-light-section {
  background-color: var(--bg-light);
}

.bg-dark-section {
  background-color: var(--primary);
  color: #e0e0e0;
}
.bg-dark-section h1, 
.bg-dark-section h2, 
.bg-dark-section h3, 
.bg-dark-section h4 {
  color: #ffffff;
}

/* Spacing Utilities */
.section-padding {
  padding: 6rem 0;
}

.section-padding-sm {
  padding: 4rem 0;
}

/* Section Header Typography */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background-color: var(--gold);
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 1.25rem 0 2rem 0;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons System */
.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
  cursor: pointer;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.btn-outline-light-custom {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-outline-light-custom:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Floating Top Info Header */
.top-bar {
  background-color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 0.825rem;
  color: #aaaaaa;
  position: relative;
  z-index: 1060;
}

.top-bar a {
  color: #cccccc;
}

.top-bar a:hover {
  color: var(--gold);
}

/* Luxury Sticky Navbar */
.navbar-ruby {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
  transition: var(--transition-smooth);
  z-index: 1050;
  position: relative;
}

.navbar-ruby .nav-link {
  color: var(--secondary);
}

.navbar-ruby .brand-text {
  color: var(--primary);
}

.navbar-ruby.navbar-transparent {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar-ruby.navbar-transparent {
    top: 0;
  }
}

.navbar-ruby.navbar-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-ruby.navbar-transparent .brand-text {
  color: #ffffff;
}

.navbar-ruby.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  animation: navbarSlideDown 0.4s ease forwards;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-ruby.navbar-scrolled .nav-link {
  color: var(--secondary);
}

.navbar-ruby.navbar-scrolled .brand-text {
  color: var(--primary);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 2rem;
}

.navbar-brand img {
  height: 55px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  transition: var(--transition-smooth);
}

.navbar-ruby.navbar-scrolled .navbar-brand img {
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}




.nav-link {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 0.45rem 0.55rem !important;
  position: relative;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.nav-social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.nav-social-icons a:hover {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Mobile Offcanvas Drawer */
.offcanvas-ruby {
  background-color: var(--primary);
  color: #ffffff;
}

.offcanvas-ruby .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-ruby .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.1rem;
  padding: 0.8rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-ruby .nav-link::after {
  left: 0 !important;
  transform: none !important;
}

.offcanvas-ruby .nav-link:hover::after,
.offcanvas-ruby .nav-link.active::after {
  width: 60px !important;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Carousel Fade Effect Override */
.hero-carousel .carousel-item {
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.8) 100%);
}

.hero-content {
  position: absolute;
  top: 55%;
  transform: translateY(-40%);
  width: 100%;
  z-index: 10;
  padding-top: 40px;
}


.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 2.65rem;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 2.85rem;
    white-space: nowrap;
  }
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 900px;
  font-weight: 300;
  margin-bottom: 2.2rem;
}



.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(17, 17, 17, 0.4);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 6px;
  transition: var(--transition-smooth);
}

.carousel-indicators .active {
  background-color: var(--gold);
  width: 60px;
}

/* Page Header Subpage Banner */
.page-header-banner {
  height: 45vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.7) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.page-header-title {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a {
  color: var(--gold);
}

.breadcrumb-custom .active {
  color: #ffffff;
}

/* Cards System */
.card-luxury {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 0px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
}

.card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 162, 39, 0.4);
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.card-luxury:hover::before {
  width: 100%;
}

.card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.card-icon i {
  display: inline-block;
  line-height: 1;
  color: inherit;
}

.card-luxury:hover .card-icon {
  background-color: var(--gold);
  color: #ffffff !important;
  transform: scale(1.05);
}


/* Product Cards */
.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
  border-color: rgba(201, 162, 39, 0.3);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  z-index: 2;
}

.product-content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Horizontal Timeline Process System */
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
}

.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.2) 100%);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.timeline-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--gold);
  color: var(--primary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 1);
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-node {
  background-color: var(--gold);
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.timeline-text {
  font-size: 0.825rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Animated Statistics Counter */
.stat-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--primary);
  color: #ffffff;
  border-bottom: 3px solid var(--gold);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* Filterable Gallery & Lightbox */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}

.btn-filter {
  background: transparent;
  border: none;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.5rem;
  color: var(--secondary);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-filter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.btn-filter:hover::after,
.btn-filter.active::after {
  width: 100%;
}

.btn-filter:hover,
.btn-filter.active {
  color: var(--gold);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  height: 320px;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.gallery-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 11, 11, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--gold);
}

/* Testimonials Carousel & Cards */
.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.author-country {
  font-size: 0.825rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Contact Form & Info Cards */
.contact-info-card {
  background-color: var(--primary);
  color: #ffffff;
  padding: 3rem 2.5rem;
  height: 100%;
  border-top: 3px solid var(--gold);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.form-control-custom {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0px;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background-color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
  outline: none;
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* Footer Architecture - All Text in Pure White */
.footer-ruby {
  background-color: var(--primary);
  color: #ffffff !important;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 3px solid var(--gold);
  font-size: 0.9rem;
}

.footer-ruby p,
.footer-ruby span,
.footer-ruby li,
.footer-ruby div,
.footer-ruby .text-muted {
  color: #ffffff !important;
}

.footer-ruby h5 {
  color: #ffffff !important;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-ruby h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ffffff !important;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #ffffff !important;
}

.footer-bottom p {
  color: #ffffff !important;
}

.footer-bottom a {
  color: #ffffff !important;
}

.footer-bottom a:hover {
  color: var(--gold) !important;
}

