/* Responsive: Banner/Hero Buttons Full Width on Mobile */
@media (max-width: 600px) {
  .services-hero-buttons .btn,
  .about-cta-buttons .btn,
  .pp-hero-actions .btn,
  .footer-section .btn,
  .section-title .btn,
  .banner-buttons .btn,
  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    font-size: 15px;
    padding: 10px 0;
    margin-bottom: 8px;
    border-radius: 18px;
  }
  .services-hero-buttons,
  .about-cta-buttons,
  .pp-hero-actions,
  .banner-buttons,
  .hero-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
}
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 0;
  align-items: stretch;
}

.service-process-box {
  background: #D4CBC4;
  border: 2px solid #ffe066;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(220, 180, 40, 0.08);
  padding: 32px 20px 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.service-process-box:hover {
  box-shadow: 0 6px 24px 0 rgba(220, 180, 40, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.service-process-number {
  display: inline-block;
  background: linear-gradient(90deg, #ffe066 60%, #D4CBC4 100%);
  color: #bfa100;
  font-weight: 700;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 rgba(220, 180, 40, 0.10);
}

.service-process-box h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #bfa100;
}

.service-process-box p {
  font-size: 1rem;
  color: #6c5e2e;
  margin-bottom: 0;

}

@media (max-width: 991px) {
  .services-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-process-box {
    padding: 22px 12px 18px 12px;
    min-height: 180px;
  }
  .service-process-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
/* --- How the Service Works: Process Boxes --- */
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.service-process-box {
  background: #D4CBC4;
  border: 2px solid #ffe066;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(220, 180, 40, 0.08);
  padding: 32px 20px 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 260px;
}

.service-process-box:hover {
  box-shadow: 0 6px 24px 0 rgba(220, 180, 40, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.service-process-number {
  display: inline-block;
  background: linear-gradient(90deg, #ffe066 60%, #D4CBC4 100%);
  color: #bfa100;
  font-weight: 700;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 rgba(220, 180, 40, 0.10);
}

.service-process-box h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #bfa100;
}

.service-process-box p {
  font-size: 1rem;
  color: #6c5e2e;
  margin-bottom: 0;

}

@media (max-width: 767px) {
  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-process-box {
    padding: 22px 12px 18px 12px;
    min-height: 180px;
  }
  .service-process-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
/* === Footer Column Modern Styles === */
.footer-col {
  background: rgba(212, 203, 196, 0.07);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 24px 18px 18px 18px;
  margin-bottom: 18px;
  transition: box-shadow 0.2s, background 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-col:hover {
  background: rgba(212, 203, 196, 0.13);
  box-shadow: 0 6px 24px rgba(242,201,76,0.10);
}
.footer-title {
  font-size: 17px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-links,
.footer-contact {
  padding-left: 0;
  margin-bottom: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  list-style: none;
}
.footer-links a {
  color: #fff;
  font-size: 15px;
  border-radius: 8px;
  padding: 4px 8px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  background: var(--accent-light);
  color: var(--primary);
  padding-left: 12px;
}
.footer-contact {
  color: #fff;
  font-size: 15px;
}
.footer-contact i {
  margin-right: 8px;
  color: var(--accent);
}
.footer-row {
  gap: 24px;
}
@media (max-width: 991px) {
  .footer-col {
    padding: 18px 10px 12px 10px;
    margin-bottom: 14px;
  }
  .footer-row {
    gap: 0;
  }
}
/* ================= ROOT VARIABLES ================= */

:root{
  --primary: #7a0649;          /* maroon */
  --primary-dark: #5a0336;
  --accent: #f2c94c;           /* gold */
  --accent-light: #fff4cc;
  --text-color: #5a0336;       /* body text */
  --heading-color: #5a0336;    /* headings */

  --black: #1a1a1a;
  --text: #5a0336;
  --border: #eee;

  --white: #ffffff;

  --transition: all 0.3s ease;

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

  --gold-glow: 0 8px 25px rgba(242,201,76,0.35);
}

/* ================= RESET ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html {
  scroll-behavior: smooth;
}

/* Accessibility: keyboard users need clear focus targets */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 10px;
  z-index: 20000;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 10px;
  color: #fff;
}

body{
  font-family: 'Poppins', sans-serif;
  color: var(--text-color, #5a0336);
  background: #D4CBC4;
  line-height:1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
  filter: none;
}

iframe,
video,
canvas,
svg {
  max-width: 100%;
}

/* ================= CONTAINER ================= */

.container{
  max-width:1200px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= HEADINGS ================= */

h1,h2,h3,h4,h5, h6{
  font-weight:700;
  color: var(--heading-color, #5a0336);
  line-height: 1.3;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 18px;
}

p{
  color: var(--text);
  font-size:15px;
  margin-bottom: 0;

}

/* Justify main text blocks site-wide */
.section-title p,
.footer-text,
.footer-links,
.footer-contact,
.services-intro-text p,
.services-feature-card p,
.service-process-box p,
.service-detail-timeline-item p,
.faq-answer,
.service-notice-box p,
.services-cta-box p {

}

/* ================= LINKS ================= */

a{
  text-decoration:none;
  transition: var(--transition);
}

/* ================= ICONS ================= */

.bi{
  color: var(--accent) !important;
}

/* ================= BUTTONS ================= */

.btn{
  padding:12px 22px;
  border-radius:30px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: var(--transition);
  border:1.5px solid var(--accent);
  cursor: pointer;
}

/* primary button */
.btn-brand{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fff;
  border-color: var(--accent);
  text-decoration: none;
}

.btn-brand:hover{
  transform:translateY(-2px);
  box-shadow: var(--gold-glow);
  color: #fff;
}

/* light button */
.btn-light-brand{
  background:#D4CBC4;
  color: var(--primary);
  border-color: var(--accent);
}

.btn-light-brand:hover{
  background: var(--accent-light);
  color: var(--primary);
}

/* outline brand button */
.btn-outline-brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 203, 196, 0.08);
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(2px);
  text-decoration: none;
}

.btn-outline-brand:hover{
  background: #D4CBC4;
  color: var(--primary);
  transform: translateY(-3px);
}

/* outline button */
.btn-outline-light-custom{
  border:2px solid var(--accent);
  color:#fff;
  background: transparent;
}

/* Number highlight color for stat sections */
.stat-counter,
.experience-box h3,
.timeline-box h3 {
  color: var(--accent) !important;
}

.btn-outline-light-custom:hover{
  background:#D4CBC4;
  color: var(--primary);
}

/* ================= SECTION TITLE ================= */

.section-title{
  margin-bottom:50px;
  text-align: center;
}

.section-title h2{
  font-size:36px;
  margin-bottom:10px;
}

.section-title p{
  max-width:600px;
  margin:auto;
  font-size: 15px;
}

/* left align */
.section-left{
  text-align:left;
}

.section-left h2 {
  text-align: left;
}

.section-left p{
  margin:0;
  text-align: left;
  max-width: 100%;
}

/* ================= PAGE BADGE ================= */

.page-badge{
  display:inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:30px;
  margin-bottom:12px;
}

/* Shared page banner sizing */
.hero-section,
.about-banner,
.branches-hero,
.contact-hero,
.promises-hero,
.services-hero,
.blogs-hero,
.team-hero,
.branch-detail-hero {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 0 !important;
}

.hero-section .container,
.about-banner .container,
.branches-hero .container,
.contact-hero .container,
.promises-hero .container,
.services-hero .container,
.blogs-hero .container,
.team-hero .container,
.branch-detail-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  padding: 54px 0 !important;
}

.hero-section .hero-box,
.services-hero,
.about-banner,
.branches-hero,
.contact-hero,
.promises-hero {
  background-position: center;
  background-size: cover;
}

.hero-section .hero-content,
.services-hero-content,
.about-banner-content,
.branches-hero-content,
.contact-hero-content,
.promises-hero-content,
.blogs-hero-content,
.team-hero-content,
.branch-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 34px 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-section .hero-content h1,
.services-hero-content h1,
.about-banner-content h1,
.branches-hero-content h1,
.contact-hero-content h1,
.promises-hero-content h1,
.blogs-hero-content h1,
.team-hero-content h1,
.branch-detail-hero-content h1 {
  font-size: clamp(34px, 4.4vw, 50px) !important;
  line-height: 1.14 !important;
  margin-bottom: 12px !important;
}

.hero-section .hero-content p,
.services-hero-content p,
.about-banner-content p,
.branches-hero-content p,
.contact-hero-content p,
.promises-hero-content p,
.blogs-hero-content p,
.team-hero-content p,
.branch-detail-hero-content p {
  font-size: 16px !important;
  max-width: 680px !important;
  margin-left: auto;
  margin-right: auto;
}

.hero-box::before,
.about-banner::before,
.branches-hero::before,
.contact-hero::before,
.promises-hero::before,
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(122,6,73,0.72);
  z-index: 1;
}

.hero-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(45deg, rgba(242,201,76,0.08) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  background-position: 0 0, 17px 17px;
}

.hero-bg-icons i {
  position: absolute;
  color: rgba(242, 201, 76, 0.28);
  text-shadow: 0 8px 20px rgba(0,0,0,0.18);
  animation: heroBannerFloat 6s ease-in-out infinite;
}

.icon-coin-1 {
  font-size: 64px;
  left: 8%;
  top: 16%;
  animation-delay: 0s;
}

.icon-coin-2 {
  font-size: 56px;
  right: 16%;
  top: 24%;
  animation-delay: 1.2s;
}

.icon-coin-3 {
  font-size: 68px;
  right: 8%;
  bottom: 18%;
  animation-delay: 2s;
}

.icon-coin-4 {
  font-size: 52px;
  left: 20%;
  bottom: 20%;
  animation-delay: 2.8s;
}

.icon-coin-5 {
  font-size: 46px;
  left: 48%;
  top: 12%;
  animation-delay: 3.4s;
}

.hero-buttons,
.blogs-hero-buttons,
.services-hero-buttons,
.contact-hero-buttons,
.branch-hero-actions {
  justify-content: center !important;
  margin-top: 18px !important;
}

@keyframes heroBannerFloat {
  0%,
  100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@media (max-width: 767px) {
  .hero-section,
  .about-banner,
  .branches-hero,
  .contact-hero,
  .promises-hero,
  .services-hero,
  .blogs-hero,
  .team-hero,
  .branch-detail-hero {
    min-height: 470px;
  }

  .hero-section .container,
  .about-banner .container,
  .branches-hero .container,
  .contact-hero .container,
  .promises-hero .container,
  .services-hero .container,
  .blogs-hero .container,
  .team-hero .container,
  .branch-detail-hero .container {
    padding: 38px 0 !important;
  }

  .hero-section .hero-content,
  .services-hero-content,
  .about-banner-content,
  .branches-hero-content,
  .contact-hero-content,
  .promises-hero-content,
  .blogs-hero-content,
  .team-hero-content,
  .branch-detail-hero-content {
    padding: 22px 12px;
  }
}

.btn-outline-light-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  color:#fff;
  background:transparent;
  padding:12px 28px;
  border-radius:50px;
  font-weight:600;
  transition:var(--transition);
}

.btn-outline-light-custom:hover{
  background:#D4CBC4;
  color:var(--primary);
  transform:translateY(-3px);
}

.footer-section{
  background: linear-gradient(180deg, #390428, #2f0220);
  color: rgba(255,255,255,0.86);
  padding: 44px 0 14px;
  position: relative;
  overflow: hidden;
}

/* Decorative gold gradient on right side for visual balance */
.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38vw;
  height: 100%;
  background: linear-gradient(120deg, rgba(242,201,76,0.13) 0%, rgba(212, 203, 196, 0.01) 100%);
  pointer-events: none;
  z-index: 0;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  filter: blur(0.5px);
}

.footer-grid{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
}
@media (max-width: 1199px) {
  .footer-grid {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 18px;
    max-width: 100%;
  }
  .footer-col {
    max-width: 100%;
    min-width: 180px;
    align-items: center;
    margin-bottom: 12px;
  }
}

.footer-logo{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
}

/* Reduce footer logo image size for all views */
.footer-logo-img {
  max-width: 56px !important;
  height: auto !important;
}

@media (max-width: 767px) {
  .footer-logo-img {
    max-width: 40px !important;
  }
}

.footer-logo span{
  color: var(--accent);
}

.footer-text{
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  text-align: left;
}

.footer-title{
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.footer-links,
.footer-contact{
  text-align: left;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 6px;
}

.footer-links a{
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.footer-links a:hover{
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact{
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.footer-contact i{
  margin-right: 6px;
  color: var(--accent);
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* Footer social icon button */
.footer-social a{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

/* Make social icon itself dark for visibility on yellow */
.footer-social a i {
  color: var(--primary) !important;
  font-size: 1.3em;
  transition: color 0.2s;
}

.footer-social a:hover {
  background: #e7ba34;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.footer-social a:hover i {
  color: var(--primary-dark) !important;
}

/* Ensure social media icons are visible on yellow background */
.footer-social a i {
  color: var(--primary) !important;
}

.footer-social a:hover i {
  color: var(--primary) !important;
}

.footer-social a:hover{
  background: #e7ba34;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.footer-branches-map{
  margin-top: 0;
}

.footer-map-col{
  align-self: start;
}

.footer-branches-map .footer-title{
  margin-bottom: 8px;
}

#footer-branches-mapbox{
  width: 100%;
  height: 190px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.footer-bottom{
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

@media (max-width:1199px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  #footer-branches-mapbox{
    height: 170px;
  }
}

/* ================= MINI BOX ================= */

.mini-info-box{
  background:#D4CBC4;
  padding:10px 16px;
  border-radius:14px;
  color: var(--primary);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

/* ================= CARD ================= */

.card{
  background:#D4CBC4;
  border-radius:24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover{
  transform:translateY(-6px);
  box-shadow: var(--gold-glow);
}

/* ================= IMAGE ================= */

img{
  max-width:100%;
  display:block;
}

/* ================= SCROLL ANIMATION ================= */

html{
  scroll-behavior:smooth;
}

/* ================= HOVER EFFECT ================= */

.hover-lift{
  transition: var(--transition);
}

.hover-lift:hover{
  transform: translateY(-8px);
}

/* ================= GRADIENT TEXT ================= */

.gradient-text{
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SPACING ================= */

section{
  position:relative;
}

/* ================= FOOTER ================= */

footer{
  background:#111;
  color:#fff;
  padding:50px 0;
}

footer p{
  color:#ccc;
}

/* ================= RESPONSIVE ================= */

@media (max-width:991px){

  .section-title h2{
    font-size:30px;
  }

}

@media (max-width:767px){

  .hero-bg-icons i{
    font-size: 34px !important;
    opacity: 0.75;
  }

  .icon-coin-3,
  .icon-coin-5{
    display: none;
  }

  .section-title h2{
    font-size:26px;
  }

  .btn{
    width:auto;
    min-height:40px;
    padding:9px 16px;
    font-size:13px;
    border-radius:24px;
  }

}

/* ================= GLOBAL THEME OVERRIDES ================= */

.btn,
.btn-brand,
.btn-light-brand,
.btn-outline-brand,
.btn-outline-light-custom,
.branch-outline-btn,
.btn-branch-outline {
  border-color: var(--accent) !important;
}

.btn-outline-brand,
.btn-outline-light-custom,
.branch-outline-btn,
.btn-branch-outline {
  color: var(--accent) !important;
}

.btn-outline-brand:hover,
.btn-outline-light-custom:hover,
.branch-outline-btn:hover,
.btn-branch-outline:hover {
  background: var(--accent) !important;
  color: var(--primary) !important;
}

.stat-counter,
.experience-box h3,
.timeline-box h3,
.record-card h3,
.highlight-item h3,
.branch-hero-stat strong,
.branch-stat strong {
  color: var(--accent) !important;
}

/* Service Boxes Styles */
.service-box-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #D4CBC4;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}

.service-box i {
  font-size: 1.5em;
  min-width: 1.5em;
}

.service-box:hover, .service-box:focus {
  background: #D4CBC4;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(184,134,11,0.10);
  text-decoration: none;
}

.site-gold-buyer-seo-section{
  padding:42px 0;
  background:linear-gradient(135deg, rgba(122, 6, 73, 0.04), rgba(242, 201, 76, 0.1));
}

.site-gold-buyer-seo-box{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(220px, 0.34fr);
  gap:24px;
  align-items:center;
  background:#D4CBC4;
  border:1px solid rgba(122, 6, 73, 0.12);
  border-radius:8px;
  padding:24px;
  box-shadow:0 14px 32px rgba(122, 6, 73, 0.08);
}

.site-gold-buyer-kicker{
  display:inline-flex;
  margin-bottom:8px;
  color:#7a0649;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.site-gold-buyer-seo-box h2{
  margin:0 0 10px;
  color:#7a0649;
  font-size:26px;
  line-height:1.2;
  font-weight:800;
}

.site-gold-buyer-seo-box p{
  margin:0 0 10px;
  color:#474747;
  font-size:14px;
  line-height:1.7;
}

.site-gold-buyer-seo-links{
  display:grid;
  gap:8px;
}

.site-gold-buyer-seo-links a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 12px;
  border-radius:8px;
  border:1px solid rgba(122, 6, 73, 0.16);
  background:#D4CBC4;
  color:#7a0649;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.site-gold-buyer-seo-links a:hover,
.site-gold-buyer-seo-links a:focus-visible{
  background:#7a0649;
  color:#fff;
}

@media (max-width: 767px){
  .site-gold-buyer-seo-section{
    padding:28px 0;
  }

  .site-gold-buyer-seo-box{
    grid-template-columns:1fr;
    padding:18px;
    gap:16px;
  }

  .site-gold-buyer-seo-box h2{
    font-size:21px;
  }

  .site-gold-buyer-seo-box p{
    font-size:13px;
  }

  .site-gold-buyer-seo-links{
    grid-template-columns:1fr 1fr;
  }
}

/* ================= 3D UI SURFACES ================= */

:root{
  --rl-3d-face:#D4CBC4;
  --rl-3d-face-light:#e7ddd5;
  --rl-3d-side:#9e8f86;
  --rl-3d-maroon:#5a0336;
  --rl-3d-shadow:8px 10px 0 rgba(90, 3, 54, 0.22), 0 18px 34px rgba(90, 3, 54, 0.18);
  --rl-3d-shadow-hover:11px 14px 0 rgba(90, 3, 54, 0.26), 0 24px 42px rgba(90, 3, 54, 0.24);
  --rl-3d-inset:inset 1px 1px 0 rgba(255,255,255,0.5), inset -1px -1px 0 rgba(90,3,54,0.16);
}

.btn,
button:not(.navbar-toggler):not(.sold-ticker-open):not(.hot-deal-close):not(.ceo-image-lightbox-close),
input[type="submit"],
input[type="button"],
.btn-brand,
.btn-light-brand,
.btn-outline-brand,
.btn-outline-light-custom,
.btn-branch-outline,
.site-gold-buyer-seo-links a,
.footer-section .btn{
  border-radius:12px;
  transform-style:preserve-3d;
  box-shadow:6px 7px 0 rgba(90, 3, 54, 0.24), 0 12px 22px rgba(90, 3, 54, 0.16), var(--rl-3d-inset) !important;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover,
button:not(.navbar-toggler):not(.sold-ticker-open):not(.hot-deal-close):not(.ceo-image-lightbox-close):hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn-brand:hover,
.btn-light-brand:hover,
.btn-outline-brand:hover,
.btn-outline-light-custom:hover,
.btn-branch-outline:hover,
.site-gold-buyer-seo-links a:hover,
.site-gold-buyer-seo-links a:focus-visible,
.footer-section .btn:hover{
  transform:translateY(-5px);
  box-shadow:8px 10px 0 rgba(90, 3, 54, 0.28), 0 18px 30px rgba(90, 3, 54, 0.22), var(--rl-3d-inset) !important;
}

.btn:active,
button:not(.navbar-toggler):not(.sold-ticker-open):not(.hot-deal-close):not(.ceo-image-lightbox-close):active,
input[type="submit"]:active,
input[type="button"]:active,
.site-gold-buyer-seo-links a:active{
  transform:translateY(2px);
  box-shadow:3px 4px 0 rgba(90, 3, 54, 0.24), 0 8px 16px rgba(90, 3, 54, 0.16), var(--rl-3d-inset) !important;
}

.card,
.mini-info-box,
.service-box,
.service-process-box,
.service-feature-card,
.service-detail-card,
.service-notice-box,
.services-cta-box,
.mission-box,
.why-box,
.timeline-box,
.about-cta-box,
.branch-benefit-box,
.branch-card,
.branch-locator-box,
.contact-info-card,
.contact-note-box,
.contact-form-box,
.visit-info-box,
.visit-map-box,
.contact-cta-box,
.team-card,
.team-mini-box,
.promise-card,
.promises-highlight-box,
.promises-cta-box,
.site-gold-buyer-seo-box{
  border-radius:14px;
  border:2px solid rgba(90, 3, 54, 0.72);
  background:linear-gradient(145deg, var(--rl-3d-face-light) 0%, var(--rl-3d-face) 58%, var(--rl-3d-side) 100%);
  box-shadow:var(--rl-3d-shadow), var(--rl-3d-inset);
  transform-style:preserve-3d;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.card:hover,
.mini-info-box:hover,
.service-box:hover,
.service-process-box:hover,
.service-feature-card:hover,
.service-detail-card:hover,
.mission-box:hover,
.why-box:hover,
.timeline-box:hover,
.branch-benefit-box:hover,
.branch-card:hover,
.contact-info-card:hover,
.team-card:hover,
.team-mini-box:hover,
.promise-card:hover,
.site-gold-buyer-seo-box:hover{
  transform:translateY(-7px);
  border-color:var(--rl-3d-maroon);
  box-shadow:var(--rl-3d-shadow-hover), var(--rl-3d-inset);
}

@media (max-width: 767px){
  .btn,
  button:not(.navbar-toggler):not(.hot-deal-close):not(.ceo-image-lightbox-close),
  input[type="submit"],
  input[type="button"],
  .site-gold-buyer-seo-links a{
    box-shadow:4px 5px 0 rgba(90, 3, 54, 0.22), 0 10px 18px rgba(90, 3, 54, 0.15), var(--rl-3d-inset) !important;
  }

  .card,
  .mini-info-box,
  .service-box,
  .service-process-box,
  .service-feature-card,
  .service-detail-card,
  .mission-box,
  .why-box,
  .timeline-box,
  .branch-benefit-box,
  .branch-card,
  .contact-info-card,
  .team-card,
  .promise-card,
  .site-gold-buyer-seo-box{
    box-shadow:5px 6px 0 rgba(90, 3, 54, 0.2), 0 12px 22px rgba(90, 3, 54, 0.15), var(--rl-3d-inset);
  }
}

/* Final mobile SEO / Gold Buyer block responsive layer */
@media (max-width: 767px) {
  .site-gold-buyer-seo-section {
    padding: 22px 12px !important;
  }

  .site-gold-buyer-seo-box {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 14px !important;
    border-radius: 14px !important;
    text-align: left !important;
    overflow: hidden;
  }

  .site-gold-buyer-seo-box h2 {
    font-size: 22px !important;
    line-height: 1.28 !important;
    margin-bottom: 10px !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .site-gold-buyer-seo-box p {
    font-size: 13px !important;
    line-height: 1.72 !important;
    margin-bottom: 14px !important;
  }

  .site-gold-buyer-kicker {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .site-gold-buyer-seo-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 14px !important;
  }

  .site-gold-buyer-seo-links a {
    width: 100% !important;
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }
}

@media (max-width: 420px) {
  .site-gold-buyer-seo-section {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .site-gold-buyer-seo-box {
    padding: 16px 12px !important;
  }

  .site-gold-buyer-seo-box h2 {
    font-size: 20px !important;
  }
}
