.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  margin-top: 50px;
  background: #060608;
}

.footer-main {
  background: #060608;
  color: #cfcfcf;
}

.footer-main p,
.footer-bottom p {
  color: #cfcfcf;
}

/* Footer link contrast on dark background */
.footer-main a {
  color: #cfcfcf;
  text-decoration: none;
}
.footer-main a:hover {
  color: #e9c46a;
}
.footer-links a {
  color: #cfcfcf;
}
.footer-links a:hover {
  color: #e9c46a;
}

.hero-section,
.cta-section {
  color: #fff;
  background-color: #0a0a0f;
}

.hero-section h1,
.hero-section .lead,
.cta-section h2,
.cta-section p {
  color: #fff;
}

/* Sidebar widgets on legal pages */
.sidebar-widget {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
}
.sidebar-widget h4 {
  color: #fff;
}
.sidebar-widget p {
  color: #d0d0d0;
}
.widget-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-links li {
  margin-bottom: 10px;
}
.widget-links a {
  color: #cfcfcf;
  text-decoration: none;
}
.widget-links a:hover {
  color: #e9c46a;
}
.widget-links a i {
  margin-right: 8px;
  color: #e9c46a;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0b0b0f;
  color: #e8e8e8;
  padding: 18px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-text {
  flex: 1 1 300px;
}
.cookie-text p {
  margin: 0;
  color: #e8e8e8;
}
.cookie-text a {
  color: #e9c46a;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  border: none;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-btn-accept {
  background: #e9c46a;
  color: #141414;
}
.cookie-btn-decline {
  background: transparent;
  color: #e8e8e8;
  border: 1px solid #555;
}

/* ===== Base ===== */
body {
  background: #0a0a0f;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Buttons ===== */
.btn-gold {
  background: #e9c46a;
  color: #141414;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background: #d4af5a;
  color: #141414;
}
.btn-outline-gold {
  background: transparent;
  color: #e9c46a;
  border: 1px solid #e9c46a;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: #e9c46a;
  color: #141414;
}

/* ===== Header ===== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-contact {
  background: #060608;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-contact-item {
  color: #b0b0b0;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s;
}
.header-contact-item:hover {
  color: #e9c46a;
}
.header-contact-item i {
  color: #e9c46a;
  margin-right: 6px;
}
.navbar {
  padding: 12px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e9c46a; 
}
.navbar-brand span:first-child {
  color: #e9c46a; 
  font-weight: 700;
  font-size: 1.4rem;
}
.navbar-brand span:last-child {
  color: #fff;
  font-weight: 300;
  font-size: 1.4rem;
}
.nav-link {
  color: #cfcfcf !important;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: #e9c46a !important;
}
.dropdown-menu {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dropdown-item {
  color: #cfcfcf;
}
.dropdown-item:hover {
  background: rgba(233, 196, 106, 0.1);
  color: #e9c46a;
}
.navbar-toggler-custom {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-divider {
  margin-bottom: 24px;
}
.hero-divider i {
  font-size: 2.5rem;
  color: #e9c46a;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-section .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Section Headings ===== */
section h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Section Backgrounds ===== */
.bg-dark-alt {
  background: #0f0f16;
}
.services-section,
.about-section,
.process-section,
.partners-section,
.pricing-section,
.contact-section,
.experience-section,
.history-section,
.portfolio-section,
.why-choose-section,
.blog-grid-section,
.faq-section,
.pricing-intro-section,
.service2-pricing-section,
.legal-content-section {
  background: #0a0a0f;
  padding: 80px 0;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-section h2 {
  color: #fff;
}
.stats-section p {
  color: rgba(255, 255, 255, 0.85);
}
.stat-item {
  text-align: center;
  padding: 30px 15px;
}
.stat-icon {
  font-size: 2.5rem;
  color: #e9c46a;
  margin-bottom: 16px;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Premium Cards ===== */
.card-premium {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 106, 0.3);
}
.card-image-wrapper {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-premium:hover .card-image-wrapper img {
  transform: scale(1.05);
}
.card-body {
  padding: 28px 24px;
}
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 196, 106, 0.1);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card-icon i {
  font-size: 1.5rem;
  color: #e9c46a;
}
.card-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.card-text {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
}

/* ===== Feature Check List ===== */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.feature-check-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-weight: 300;
  line-height: 1.6;
}
.feature-check-list li i {
  color: #e9c46a;
  margin-right: 10px;
}

/* ===== Highlight Box ===== */
.highlight-box {
  background: rgba(233, 196, 106, 0.08);
  border: 1px solid rgba(233, 196, 106, 0.2);
  border-radius: 12px;
  padding: 24px;
}
.highlight-box h4 {
  color: #e9c46a;
  margin-bottom: 10px;
}
.highlight-box h4 i {
  color: #e9c46a;
}
.highlight-box p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ===== Content Block ===== */
.content-block {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px;
}
.content-block p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* ===== Process Steps ===== */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.process-step:last-child {
  border-bottom: none;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(233, 196, 106, 0.3);
  line-height: 1;
  min-width: 60px;
}
.step-content h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials-section .carousel-inner {
  padding: 20px 0 60px;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.quote-icon {
  margin-bottom: 20px;
}
.quote-icon i {
  font-size: 2rem;
  color: rgba(233, 196, 106, 0.5);
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
  border: none;
}
.client-name {
  font-weight: 600;
  color: #e9c46a;
  font-size: 1.1rem;
}
.client-position {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 4px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.5rem;
  color: #e9c46a;
}
.carousel-indicators [data-bs-target] {
  background-color: #e9c46a;
}

/* ===== Blog Cards ===== */
.card-blog {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-blog:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 106, 0.3);
}
.blog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.blog-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.blog-meta span {
  color: rgba(255, 255, 255, 0.55);
}
.blog-meta i {
  color: #e9c46a;
  margin-right: 5px;
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}
.blog-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-title a:hover {
  color: #e9c46a;
}
.blog-excerpt {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===== Pricing Cards ===== */
.pricing-card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 106, 0.3);
}
.pricing-card.featured {
  border-color: rgba(233, 196, 106, 0.4);
  box-shadow: 0 0 30px rgba(233, 196, 106, 0.08);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e9c46a;
  color: #141414;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
}
.pricing-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 196, 106, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.pricing-icon i {
  font-size: 1.8rem;
  color: #e9c46a;
}
.pricing-plan {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e9c46a;
  margin-bottom: 4px;
}
.pricing-period {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-features li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li i {
  margin-right: 10px;
  width: 16px;
}
.pricing-features .fa-check {
  color: #4caf50;
}
.pricing-features .fa-times {
  color: #666;
}

/* ===== Gallery ===== */
.gallery-item {
  height: 280px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
/* .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  transition: opacity 0.3s;
} */
.gallery-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.gallery-content h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.gallery-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Partner Logos ===== */
.partner-logo {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.partner-logo:hover {
  border-color: rgba(233, 196, 106, 0.3);
}
.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 30px;
}
.form-label-custom {
  display: block;
  color: #cfcfcf;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-control-custom {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.3s;
}
.form-control-custom:focus {
  background: #0a0a0f;
  border-color: #e9c46a;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(233, 196, 106, 0.15);
  outline: none;
}
.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Contact Info Cards ===== */
.contact-info-card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
}
.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 196, 106, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.contact-icon i {
  font-size: 1.5rem;
  color: #e9c46a;
}
.contact-info-card h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

/* ===== Map ===== */
.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.map-overlay-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  z-index: 1;
}
.map-label {
  color: #e9c46a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.map-label i {
  margin-right: 6px;
}
.map-address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}
.faq-question:hover {
  color: #e9c46a;
}
.faq-question i {
  color: #e9c46a;
  transition: transform 0.3s;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-answer a {
  color: #e9c46a;
}

/* ===== Timeline ===== */
.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 36px;
  border-left: 2px solid rgba(233, 196, 106, 0.3);
}
.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e9c46a;
  border: 3px solid #0a0a0f;
}
.timeline-year {
  color: #e9c46a;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.timeline-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.timeline-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.7;
}

/* ===== Team Cards ===== */
.team-card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 196, 106, 0.3);
}
.team-avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 196, 106, 0.1);
  border-radius: 50%;
  margin: 0 auto 18px;
}
.team-avatar i {
  font-size: 2rem;
  color: #e9c46a;
}
.team-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-role {
  color: #e9c46a;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.team-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cfcfcf;
  transition: all 0.3s;
}
.team-socials a:hover {
  background: rgba(233, 196, 106, 0.15);
  color: #e9c46a;
}

/* ===== Footer Extras ===== */
.footer-main .container {
  padding-top: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-brand span {
  color: #e9c46a;
  font-weight: 700;
  font-size: 1.3rem;
}
.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cfcfcf;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: rgba(233, 196, 106, 0.15);
  color: #e9c46a;
}
.footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #e9c46a;
}
.footer-links a i {
  color: #e9c46a;
  margin-right: 6px;
  font-size: 0.8rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: #e9c46a;
  margin-top: 4px;
  min-width: 16px;
}

/* ===== Page Banner (legal pages) ===== */
.page-banner {
  padding: 80px 0 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner-content {
  text-align: center;
}
.page-banner h1 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.breadcrumb-custom {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-custom .breadcrumb-item a {
  color: #e9c46a;
  text-decoration: none;
}
.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Legal Content ===== */
.legal-content-section .content-block {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
}
.legal-content-section h2 {
  color: #e9c46a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 14px;
}
.legal-content-section h2:first-child {
  margin-top: 0;
}
.legal-content-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content-section ul {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content-section ul li {
  margin-bottom: 8px;
}
.legal-content-section a {
  color: #e9c46a;
}

/* Sidebar widget text contrast fix on dark bg */
.sidebar-widget p {
  color: rgba(255, 255, 255, 0.7) !important;
}
.sidebar-widget .widget-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.sidebar-widget .widget-links a:hover {
  color: #e9c46a !important;
}
.sidebar-widget .widget-links span {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== Comparison Table ===== */
.table-custom {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}
.table-custom thead th {
  background: #16161d;
  color: #e9c46a;
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 16px;
}
.table-custom tbody td {
  background: #12121a;
  border-color: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  vertical-align: middle;
}
.table-custom .text-success {
  color: #4caf50 !important;
}
.table-custom .text-danger {
  color: #777 !important;
}

/* ===== Thank You Page ===== */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.thank-you-icon {
  font-size: 4rem;
  color: #e9c46a;
  margin-bottom: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section .lead {
    font-size: 1.1rem;
  }
  section h2 {
    font-size: 1.8rem;
  }
  .navbar-collapse {
    background: #12121a;
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
  }
  .stats-section {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 50vh;
    padding: 60px 0 40px;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section .lead {
    font-size: 1rem;
  }
  section h2 {
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .contact-form-wrapper {
    padding: 24px 18px;
  }
  .testimonial-card {
    padding: 28px 20px;
  }
  .footer-main .container {
    padding-top: 40px;
  }

  .navbar-toggler-custom {
    display: block;
  }
}
