:root {
  /* Core palette: black / white / gold */
  --gold: #D4AF37;
  --gold-600: #B28D1A;
  --gold-100: #FFF7DB;
  --gold-200: #FFEFB6;

  /* Map brand to gold */
  --brand: var(--gold);
  --brand-600: var(--gold-600);

  --ink: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  padding-top: 74px;
}

.navbar { transition: box-shadow .25s ease }
.navbar.scrolled { box-shadow: 0 8px 24px rgba(15,23,42,.08) }

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #f3d98b);
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
}

.contact-strip {
  position: absolute;
  right: 1rem;
  top: .35rem;
  font-size: .875rem;
  color: var(--muted);
}

.progress-bar-top {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  width: 0;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% -10%, var(--gold-100), transparent 45%),
    radial-gradient(circle at 80% 110%, var(--gold-200), transparent 45%),
    linear-gradient(180deg, #fff, #f8fafc);
}
.hero .container { padding-top: 5rem; padding-bottom: 4rem }
.hero h1 { font-weight: 800; letter-spacing: -.02em }
.hero .badge {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--brand-600);
  border: 1px solid rgba(0,0,0,.06);
}
.hero-cta .btn { padding: .75rem 1.1rem; border-radius: .75rem }

/* Hero carousel overrides */
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 520px }

@media (max-width:575.98px) {
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item { height: 420px }
}
@media (min-width:992px) {
  .hero-carousel .carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item { height: 640px }
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner { border-radius: 0 !important }
.hero-carousel .carousel-item { position: relative }
.hero-carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-carousel .carousel-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.3) 38%, rgba(0,0,0,0) 68%),
    radial-gradient(1200px 60% at -10% 50%, rgba(212,175,55,.18), transparent 60%);
}
.hero-carousel .carousel-item:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-carousel .carousel-caption {
  z-index: 2;
  position: absolute;
  left: max(1.25rem, 6%);
  right: 50%;
  bottom: auto;
  top: 18%;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero-carousel .caption-center {
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(100%, 900px);
}
.hero-carousel .caption-center .hero-cta .btn { min-width: 180px }
.hero-carousel .carousel-caption .badge {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: #111;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-carousel .carousel-caption h1,
.hero-carousel .carousel-caption h2,
.hero-carousel .carousel-caption p { color: #fff }

.hero-carousel .carousel-indicators {
  justify-content: center;
  bottom: 1rem;
  z-index: 5;
  left: 50%;
  right: auto;
  width: auto;
  padding: 0;
  transform: translateX(-50%);
  gap: .5rem;
  margin-bottom: 1rem;
}
@media (max-width:575.98px) {
  .hero-carousel .carousel-indicators { bottom: .75rem }
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background-color: rgba(255,255,255,.05);
  opacity: 1;
  transition: background-color .3s ease, transform .3s ease;
}
.hero-carousel .carousel-indicators .active {
  background-color: var(--brand);
  transform: scale(1.2);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 8% }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
  background-color: rgba(0,0,0,.25);
  border-radius: 50%;
  padding: 16px;
}

/* Caption entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px) }
  to { opacity: 1; transform: translateY(0) }
}
.caption-animate > * {
  opacity: 0;
  transform: translateY(12px);
}
.carousel-item.active .caption-animate > * {
  animation: fadeUp .6s cubic-bezier(.2,.7,.3,1) forwards;
}
.carousel-item.active .caption-animate > *:nth-child(1) { animation-delay: .05s }
.carousel-item.active .caption-animate > *:nth-child(2) { animation-delay: .18s }
.carousel-item.active .caption-animate > *:nth-child(3) { animation-delay: .3s }
.carousel-item.active .caption-animate > *:nth-child(4) { animation-delay: .45s }

.hero-carousel .carousel-item.active .carousel-caption .badge { animation: fadeUp .5s ease .05s both }
.hero-carousel .carousel-item.active .carousel-caption h1,
.hero-carousel .carousel-item.active .carousel-caption h2 { animation: fadeUp .55s ease .15s both }
.hero-carousel .carousel-item.active .carousel-caption p { animation: fadeUp .55s ease .25s both }
.hero-carousel .carousel-item.active .carousel-caption .hero-cta { animation: fadeUp .55s ease .35s both }

/* Controls style enhancements */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: auto; padding: 0 .75rem }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(255,255,255,.85);
  border-radius: 999px;
  background-size: 50% 50%;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.08);
}
.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  outline: 1px solid rgba(212,175,55,.6);
}

/* About page photo collage */
.photo-collage {
  display: grid;
  gap: 1rem;
}
.photo-collage .collage-top {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 24px -8px rgba(15,23,42,.25), 0 2px 8px rgba(15,23,42,.12);
}
.photo-collage .collage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
/* Collage items (cleaned syntax) */
.photo-collage .collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px -6px rgba(15,23,42,.25), 0 2px 6px rgba(15,23,42,.12);
  aspect-ratio: 2/3;
}
.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease, filter .3s ease;
}
.photo-collage img:hover { transform: scale(1.05) }

@media (max-width:575.98px) {
  .photo-collage .collage-row { gap: .75rem }
  .photo-collage .collage-top { border-radius: 12px; aspect-ratio: 4/3 }
  .photo-collage .collage-item { border-radius: 10px; aspect-ratio: 1/1 }
}

/* Cards */
.card-hover { transition: transform .3s ease, box-shadow .3s ease }
/* Fallback explicit heights if aspect-ratio unsupported */
@supports not (aspect-ratio: 1/1) {
  .photo-collage .collage-top { height: 300px }
  .photo-collage .collage-item { height: 230px }
}
@media (min-width:992px) {
  .photo-collage .collage-top { height: 320px }
  .photo-collage .collage-item { height: 250px }
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.icon-pill {
  width: 42px;
/* (Removed duplicated photo-collage img rule) */
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--brand);
  border: 1px solid rgba(0,0,0,.06);
}
@media (min-width:992px) {
  .photo-collage { max-width: 520px; margin-inline: auto }
}
@media (max-width:575.98px) {
  .photo-collage { gap: .5rem }
}

.section-title { font-weight: 800; letter-spacing: -.02em }

.footer { backdrop-filter: saturate(1.1) }

/* Gallery */
.gallery img { border-radius: 12px; object-fit: cover }
.gallery a { position: relative; display: block }
.gallery a:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
}

/* Forms */
.form-control:focus { box-shadow: 0 0 0 .25rem rgba(13,110,253,.15) }
.btn:focus { box-shadow: 0 0 0 .25rem rgba(212,175,55,.25) }
.required:after { content: " *"; color: #dc3545 }

/* Utilities */
.bg-light-subtle { background: #f8fafc }
.shadow-sm-sm { box-shadow: 0 8px 12px rgba(15,23,42,.06) }
.object-fit-cover { object-fit: cover }
.object-position-center { object-position: center }

/* Professional Navbar Enhancements */
.pro-navbar {
  --nav-height: 74px;
  --nav-bg: rgba(255,255,255,.85);
  --nav-border: rgba(15,23,42,.06);
  backdrop-filter: saturate(1.2) blur(8px);
  transition: box-shadow .3s ease, background-color .3s ease, padding .3s ease;
  height: var(--nav-height);
}
.fixed-top.pro-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}
.pro-navbar .navbar-brand { font-size: 1.05rem; line-height: 1 }
.brand-logo { height: 34px; width: auto; display: inline-block }
.pro-navbar.navbar-shrink .brand-logo { height: 28px }
.pro-navbar .navbar-brand .tagline {
  font-size: .65rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.pro-navbar.scrolled { background: var(--bg); box-shadow: 0 6px 24px rgba(15,23,42,.12) }
.pro-navbar.scrolled .navbar-brand .tagline { color: var(--brand-600) }
.pro-navbar .nav-link {
  font-weight: 500;
  padding: .75rem .9rem;
  position: relative;
}
.pro-navbar .nav-link.active { color: var(--brand) }

/* Underline animation */
.link-underline { position: relative }
.link-underline:after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .4rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,.01,.2,1);
}
.link-underline:hover:after,
.link-underline.active:after { transform: scaleX(1) }

/* Mega dropdown */
.mega-drop {
  min-width: 100%;
  left: 0;
  right: 0;
  margin-top: .4rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 24px 48px -16px rgba(15,23,42,.15), 0 8px 24px rgba(15,23,42,.08);
}
.mega-drop .mega-item {
  padding: .6rem .55rem;
  border-radius: 12px;
  transition: background .25s ease;
}
.mega-drop .mega-item:hover { background: rgba(212,175,55,.12) }
.mega-drop .mega-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--brand);
  font-size: 1.1rem;
  border: 1px solid rgba(0,0,0,.06);
}
.dropdown.position-static > .dropdown-menu { top: 100% }

@media (max-width:991.98px) {
  .mega-drop {
    position: static !important;
    box-shadow: none;
    background: transparent;
    margin-top: 0;
    padding: 0;
  }
  .mega-drop .mega-item {
    padding: .75rem .75rem;
    border: 1px solid rgba(15,23,42,.06);
    margin-bottom: .5rem;
    background: #fff;
  }
  .mega-drop .row { flex-direction: column }
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #111;
  border: 1px solid rgba(0,0,0,.12);
}
.btn-gradient:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  color: #111;
}
.btn-gradient:active { filter: brightness(.95) }

/* Refined professional nav call-to-action */
.nav-cta {
  --cta-bg-start: var(--gold-100);
  --cta-bg-end: var(--gold-200);
  background: linear-gradient(135deg, var(--cta-bg-start), var(--cta-bg-end));
  color: var(--brand-600);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 14px;
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.25), 0 2px 6px rgba(15,23,42,.12), inset 0 0 0 1px rgba(255,255,255,.6);
  position: relative;
  overflow: hidden;
  transition: background .45s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.3,1), color .4s ease;
}
.nav-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.35), transparent 70%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -8px rgba(15,23,42,.28), 0 6px 14px rgba(15,23,42,.14), inset 0 0 0 1px rgba(255,255,255,.75);
  color: #111;
}
.nav-cta:hover:before { opacity: .9 }
.nav-cta:active { transform: translateY(-1px); filter: brightness(.97) }
.nav-cta:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px }
@media (max-width: 991.98px){
  .nav-cta { margin-top:.75rem; width:100%; justify-content:center }
}

/* =============================
   Mobile Navigation Panel Styling (re-added)
   ============================= */
@media (max-width: 991.98px) {
  .pro-navbar { padding-inline: .35rem }
  .pro-navbar .navbar-collapse[data-nav-panel] {
    position: fixed;
    top: var(--nav-height,74px);
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg,#ffffff 0%,#f8fafc 60%, #f2f6fa 100%);
    backdrop-filter: blur(14px) saturate(1.2);
    padding: 1.25rem 1.1rem 2.25rem;
    overflow-y: auto;
    box-shadow: 0 18px 42px -12px rgba(15,23,42,.25),0 6px 18px rgba(15,23,42,.12);
    border-top: 1px solid rgba(15,23,42,.08);
    z-index: 1200;
  }
  .pro-navbar .navbar-collapse.show[data-nav-panel],
  .pro-navbar .navbar-collapse.collapsing[data-nav-panel] { display: block !important }
  .nav-mobile-backdrop[data-nav-backdrop] {
    position: fixed;
    inset: var(--nav-height,74px) 0 0 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
    z-index: 1100;
  }
  body.nav-open .nav-mobile-backdrop { opacity: 1; pointer-events: auto }
  body.nav-open { overflow: hidden }
  .pro-navbar .nav-main { width:100%; display:flex; flex-direction:column; padding:.35rem .35rem .6rem; background:rgba(255,255,255,.55); border:1px solid rgba(15,23,42,.06); border-radius:18px; backdrop-filter:blur(8px) saturate(1.15); box-shadow:0 8px 28px -12px rgba(15,23,42,.18),0 4px 14px rgba(15,23,42,.1); }
  .pro-navbar .nav-main > .nav-item { width:100%; border-top:1px solid rgba(15,23,42,.06); }
  .pro-navbar .nav-main > .nav-item:first-child { border-top:none }
  .pro-navbar .nav-link.link-underline { background:transparent; border:none; border-radius:12px; margin:0; box-shadow:none; padding:.9rem 1rem; font-size:.9rem; font-weight:500; letter-spacing:.015em; }
  .pro-navbar .nav-link.link-underline:after { display:none }
  .pro-navbar .nav-link.link-underline:hover { background:linear-gradient(135deg,var(--gold-100),var(--gold-200)); color:#111; }
  .pro-navbar .nav-link.link-underline.active { background:linear-gradient(135deg,var(--gold-100),var(--gold-200)); color:#111; box-shadow:inset 0 0 0 1px rgba(212,175,55,.45); }
  .pro-navbar .nav-link.link-underline:focus-visible { outline:2px solid var(--brand); outline-offset:2px }
  .pro-navbar .nav-cta { width:100%; margin-top:.9rem; font-size:.9rem; box-shadow:0 6px 18px -6px rgba(15,23,42,.25),0 3px 10px rgba(15,23,42,.12); }
}

.pro-navbar .nav-link:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px }

/* Primary button overrides */
.btn-primary {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--brand-600);
  --bs-btn-hover-border-color: var(--brand-600);
  --bs-btn-focus-shadow-rgb: 212,175,55;
  --bs-btn-active-bg: var(--brand-600);
  --bs-btn-active-border-color: var(--brand-600);
}
.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
}

/* Gold utilities */
.text-gold { color: var(--brand) !important }
.bg-gold-soft { background: var(--gold-100) !important }
.border-gold { border-color: var(--brand) !important }

/* Navbar shrink */
.pro-navbar.navbar-shrink {
  --nav-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
.pro-navbar.navbar-shrink .navbar-brand .brand-badge { transform: scale(.85) }
.pro-navbar.navbar-shrink .nav-link { padding: .55rem .9rem }

/* =============================
   Expertise Section Styling
   ============================= */
.expertise-section { position: relative; isolation: isolate }
.expertise-section .section-eyebrow { letter-spacing: .12em }
.letter-spacing-1 { letter-spacing: .08em }
.expertise-bg-shape {
  position: absolute;
  inset: -10% -5% -15% -5%;
  background:
    radial-gradient(circle at 12% 18%, var(--gold-100) 0%, transparent 55%),
    radial-gradient(circle at 85% 72%, var(--gold-200) 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  opacity: .55;
  filter: blur(42px) saturate(1.15);
  pointer-events: none;
  z-index: 0;
}
.expertise-grid { position: relative; z-index: 1 }

.expertise-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 40%, #fafafa 100%);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 1.35rem 1.15rem 1.15rem;
  box-shadow: 0 4px 12px -2px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
  overflow: hidden;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), box-shadow .5s ease, border-color .4s ease, background .6s ease;
  will-change: transform;
  opacity: 0;
  transform: translateY(18px) scale(.98);
}
.expertise-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(212,175,55,.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.65));
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.expertise-card.revealed { opacity: 1; transform: translateY(0) scale(1) }
.expertise-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 42px -12px rgba(15,23,42,.28), 0 6px 18px rgba(15,23,42,.12);
  border-color: rgba(212,175,55,.55);
}
.expertise-card:hover:before { opacity: 1 }
.expertise-card-inner { position: relative; z-index: 2 }

.expertise-icon { position: relative }
.icon-hex {
  --hex-size: 66px;
  width: var(--hex-size);
  height: var(--hex-size);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  font-size: 1.45rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  clip-path: polygon(25% 6%,75% 6%,94% 50%,75% 94%,25% 94%,6% 50%);
  border: 1px solid rgba(212,175,55,.35);
  position: relative;
  box-shadow: 0 4px 12px rgba(15,23,42,.12), inset 0 0 0 1px rgba(255,255,255,.4);
  transition: transform .6s cubic-bezier(.2,.7,.3,1), box-shadow .6s ease;
}
.expertise-card:hover .icon-hex { transform: rotate(-6deg) scale(1.05); box-shadow: 0 8px 18px rgba(15,23,42,.18), inset 0 0 0 1px rgba(255,255,255,.7) }

.expertise-title { font-weight: 600; letter-spacing: -.01em }
.expertise-text { line-height: 1.35 }

.expertise-tags .tag {
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--brand-600);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid rgba(212,175,55,.35);
  position: relative;
}
.expertise-tags .tag:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  pointer-events: none;
}

.expertise-card-hover {
  position: absolute;
  right: .9rem;
  bottom: .6rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease .05s, transform .5s cubic-bezier(.2,.7,.3,1) .05s;
}
.expertise-card:hover .expertise-card-hover { opacity: 1; transform: translateY(0) }
.stretched-link-more { color: var(--brand-600); text-decoration: none }
.expertise-card:hover .stretched-link-more { color: var(--brand); text-shadow: 0 0 4px rgba(255,255,255,.4) }

@media (hover: none) {
  .expertise-card-hover { opacity: 1; transform: none }
  .expertise-card { transform: none }
}
@media (max-width:575.98px) {
  .icon-hex { --hex-size: 58px; font-size: 1.28rem }
  .expertise-card { padding: 1.1rem .95rem .95rem }
}
@media (min-width:1400px) {
  .expertise-grid > [class*='col-'] { flex: 0 0 auto; width: 31.333% }
}

/* Reveal transition timing based on inline delays */
.expertise-card { transition-delay: var(--reveal-delay, 0ms) }

/* =============================
   Listings Section Styling
   ============================= */
.listings-section { position: relative }
/* =============================
   Blog Section Styling
   ============================= */
.blog-section { position: relative }
.blog-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 1rem .95rem 1.1rem;
  box-shadow: 0 4px 14px -4px rgba(15,23,42,.15), 0 2px 6px rgba(15,23,42,.08);
  position: relative;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), box-shadow .5s ease, border-color .4s ease;
  opacity: 0;
  transform: translateY(20px) scale(.985);
}
.blog-card:before {
  content:""; position:absolute; inset:0; background:radial-gradient(circle at 75% 18%, rgba(212,175,55,.16), transparent 72%); opacity:0; transition:opacity .6s ease; pointer-events:none;
}
.blog-card.revealed { opacity:1; transform:translateY(0) scale(1) }
.blog-card:hover { transform:translateY(-8px); box-shadow:0 18px 42px -12px rgba(15,23,42,.28),0 6px 18px rgba(15,23,42,.14); border-color:rgba(212,175,55,.55) }
.blog-card:hover:before { opacity:1 }
.blog-media { position:relative }
.blog-media img { transition: scale .7s cubic-bezier(.2,.7,.3,1) }
.blog-card:hover .blog-media img { scale:1.05 }
.blog-media-gradient { position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.0) 55%, rgba(0,0,0,.4)); opacity:0; transition:opacity .5s ease; pointer-events:none }
.blog-card:hover .blog-media-gradient { opacity:.55 }
.blog-title { font-weight:600; letter-spacing:-.01em }
.blog-excerpt { line-height:1.35 }
.blog-readmore { color: var(--brand-600) }
.blog-card:hover .blog-readmore { color: var(--brand); text-shadow:0 0 4px rgba(255,255,255,.4) }
.blog-card { transition-delay: var(--reveal-delay, 0ms) }
@media (max-width:575.98px){ .blog-card { padding:.85rem .75rem .95rem } }
.listing-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 1rem .9rem 1.1rem;
  box-shadow: 0 4px 14px -4px rgba(15,23,42,.15), 0 2px 6px rgba(15,23,42,.08);
  position: relative;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), box-shadow .5s ease, border-color .4s ease;
  opacity: 0;
  transform: translateY(20px) scale(.985);
}
.listing-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(212,175,55,.18), transparent 70%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.listing-card.revealed { opacity: 1; transform: translateY(0) scale(1) }
.listing-card:hover { transform: translateY(-8px); box-shadow: 0 18px 42px -12px rgba(15,23,42,.28), 0 6px 18px rgba(15,23,42,.14); border-color: rgba(212,175,55,.55) }
.listing-card:hover:before { opacity: 1 }

.listing-media { position: relative }
.listing-media img { transition: scale .7s cubic-bezier(.2,.7,.3,1) }
.listing-card:hover .listing-media img { scale: 1.05 }
.listing-media .media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 55%, rgba(0,0,0,.45));
  opacity: .0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.listing-card:hover .media-gradient { opacity: .55 }

.listing-title { font-weight: 600; letter-spacing: -.01em }
.listing-desc { line-height: 1.35 }
.listing-tag {
  background: var(--gold-100);
  color: var(--brand-600);
  font-size: .6rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .05em;
  border: 1px solid rgba(212,175,55,.35);
}


.listing-body { padding-top: .25rem }
.listing-body:before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,.35), rgba(212,175,55,.05));
  opacity: .7;
}
.listing-actions .action-details { color: var(--brand-600) }
.listing-card:hover .action-details { color: var(--brand); text-shadow: 0 0 4px rgba(255,255,255,.4) }

@keyframes shimmerPulse {
  0%, 100% { filter: brightness(1) }
  50% { filter: brightness(1.15) }
}

.listing-card { transition-delay: var(--reveal-delay, 0ms) }

@media (max-width:575.98px) {
  .listing-card { padding: .85rem .75rem .95rem }
}

/* =============================
   Enhanced Sections Styling
   ============================= */

/* Feature Icons */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  border: 1px solid rgba(212,175,55,.3);
  font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.stat-item {
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
  border: 1px solid rgba(15,23,42,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15,23,42,.15);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: .5rem;
  counter-reset: number;
}
.stat-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Price Display in Listings */
.listing-price {
  padding: .5rem 0;
  border-top: 1px solid rgba(212,175,55,.2);
}
.price-text {
  font-size: 1.1rem;
  letter-spacing: -.01em;
}

/* Gallery Preview */
.gallery-showcase {
  position: relative;
}
.gallery-overlay {
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}
.gallery-count {
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Testimonial */
.testimonial {
  border-left: 4px solid var(--brand);
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%) !important;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #111;
  font-weight: 700;
  font-size: .875rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,.1), transparent 50%);
  opacity: .6;
}
.cta-feature {
  text-align: center;
  color: rgba(255,255,255,.8);
}
.cta-feature i {
  opacity: .9;
}

/* Gold Button */
.btn-gold {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--brand-600);
  --bs-btn-hover-border-color: var(--brand-600);
  --bs-btn-focus-shadow-rgb: 212,175,55;
  --bs-btn-active-bg: var(--brand-600);
  --bs-btn-active-border-color: var(--brand-600);
  box-shadow: 0 4px 12px rgba(212,175,55,.3);
  font-weight: 600;
}
.btn-gold:hover {
  box-shadow: 0 8px 20px rgba(212,175,55,.4);
  transform: translateY(-2px);
}

/* Section Eyebrows */
.section-eyebrow {
  color: var(--brand) !important;
  position: relative;
  padding-left: 1rem;
}
.section-eyebrow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .5rem;
  height: 2px;
  background: var(--brand);
}

/* Enhanced Responsive */
@media (max-width: 768px) {
  .stat-number { font-size: 2rem }
  .cta-section .display-5 { font-size: 2rem }
  .testimonial { margin-left: 0; padding: 1.5rem }
}

/* Animation for stats counter */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px) }
  to { opacity: 1; transform: translateY(0) }
}
.stat-number { animation: countUp 0.6s ease forwards }

/* =============================
   Photo Collage – Desktop tweaks
   Enlarge bottom photos on desktop and reduce radius
   ============================= */
@media (min-width: 992px) {
  /* Make the collage slightly wider on desktop */
  .photo-collage { max-width: 540px !important; gap: 1rem !important }

  /* Top image: keep elegant but slightly flatter, reduce radius on desktop */
  .photo-collage .collage-top {
    border-radius: 12px !important;
    height: 340px !important; /* slightly reduced */
    aspect-ratio: auto !important; /* height wins on desktop */
  }

  /* Bottom images: make them larger and reduce radius on desktop */
  .photo-collage .collage-row { gap: 1rem !important }
  .photo-collage .collage-item {
    border-radius: 10px !important;
    height: 220px !important; /* slightly reduced */
    aspect-ratio: auto !important;
  }
}

/* Fallback if aspect-ratio unsupported: explicit heights */
@supports not (aspect-ratio: 1 / 1) {
  @media (min-width: 992px) {
    .photo-collage .collage-top { height: 340px !important }
    .photo-collage .collage-item { height: 220px !important }
  }
}

/* Prevent horizontal scroll on mobile (safety net) */
html, body { max-width: 100%; overflow-x: hidden }

/* Reserve space for scrollbar to avoid layout shift/overlap */
html { scrollbar-gutter: stable }

/* Ensure fixed navbar spans viewport without forcing 100vw */
#modernNavbar {
  left: 0;
  right: 0;
  width: auto;
  box-sizing: border-box;
}

/* Modern navbar styling extracted from inline */
.modern-navbar {
  z-index: 1030;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 4px 20px rgba(15,23,42,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar .navbar-brand {
  transition: all 0.3s ease;
  text-decoration: none;
}
.modern-navbar .navbar-brand:hover { transform: scale(1.05); }

.modern-navbar .navbar-toggler {
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.modern-navbar .navbar-toggler:hover {
  background: rgba(245,158,11,0.15);
  transform: scale(1.05);
}
.modern-navbar .navbar-toggler span {
  display: block;
  height: 2px;
  background: #f59e0b;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 4px 0;
}
.modern-navbar .nav-link {
  color: #64748b;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.modern-navbar .nav-link:hover {
  color: #f59e0b;
  background: rgba(245,158,11,0.08);
  transform: translateY(-1px);
}
.modern-navbar .nav-link.active { color: #f59e0b; }

.modern-navbar .btn.contact-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
  letter-spacing: 0.02em;
}
.modern-navbar .btn.contact-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.modern-navbar #progressBar {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 2px;
}

/* Animations modernes */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { 
    transform: translate(-50%, -50%); 
  }
  40%, 43% { 
    transform: translate(-50%, -60%); 
  }
  70% { 
    transform: translate(-50%, -55%); 
  }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-fill-mode: both;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .fade-in-up {
    animation-duration: 0.4s;
  }
  
  .display-5 {
    font-size: 2rem !important;
  }
  
  .display-6 {
    font-size: 1.5rem !important;
  }
}

/* Footer (minified) */
.footer{color:var(--default-color);background-color:var(--background-color);font-size:14px;position:relative}.footer .footer-top{padding-top:50px;border-top:1px solid color-mix(in srgb,var(--default-color),transparent 90%)}.footer .footer-about .logo{line-height:1;margin-bottom:25px}.footer .footer-about .logo img{max-height:40px;margin-right:6px}.footer .footer-about .logo span{font-size:26px;font-weight:700;letter-spacing:1px;font-family:var(--heading-font);color:var(--heading-color)}.footer .footer-about p{font-size:14px;font-family:var(--heading-font)}.footer .social-links a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;border:1px solid color-mix(in srgb,var(--default-color),transparent 50%);font-size:16px;color:color-mix(in srgb,var(--default-color),transparent 30%);margin-right:10px;transition:.3s}.footer .social-links a:hover{color:var(--accent-color);border-color:var(--accent-color)}.footer h4{font-size:16px;font-weight:700;position:relative;padding-bottom:12px}.footer .footer-links{margin-bottom:30px}.footer .footer-links ul{list-style:none;padding:0;margin:0}.footer .footer-links ul i{padding-right:2px;font-size:12px;line-height:0}.footer .footer-links ul li{padding:10px 0;display:flex;align-items:center}.footer .footer-links ul li:first-child{padding-top:0}.footer .footer-links ul a{color:color-mix(in srgb,var(--default-color),transparent 30%);display:inline-block;line-height:1}.footer .footer-links ul a:hover{color:var(--accent-color)}.footer .footer-contact p{margin-bottom:5px}.footer .footer-newsletter .newsletter-form{margin-top:30px;margin-bottom:15px;padding:6px 8px;position:relative;border-radius:4px;border:1px solid color-mix(in srgb,var(--default-color),transparent 80%);display:flex;background-color:var(--surface-color);transition:.3s}.footer .footer-newsletter .newsletter-form:focus-within{border-color:var(--accent-color)}.footer .footer-newsletter .newsletter-form input[type=email]{border:0;padding:4px;width:100%;background-color:var(--surface-color);color:var(--default-color)}.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible{outline:none}.footer .footer-newsletter .newsletter-form input[type=submit]{border:0;font-size:16px;padding:0 20px;margin:-7px -8px -7px 0;background:var(--accent-color);color:var(--contrast-color);transition:.3s;border-radius:0 4px 4px 0}.footer .footer-newsletter .newsletter-form input[type=submit]:hover{background:color-mix(in srgb,var(--accent-color),transparent 20%)}.footer .copyright{padding:25px 0;border-top:1px solid color-mix(in srgb,var(--default-color),transparent 90%)}.footer .copyright p{margin-bottom:0}.footer .credits{margin-top:6px;font-size:13px}.scroll-top{position:fixed;visibility:hidden;opacity:0;right:15px;bottom:15px;z-index:99999;background-color:var(--accent-color);width:40px;height:40px;border-radius:4px;transition:all .4s}.scroll-top i{font-size:24px;color:var(--contrast-color);line-height:0}.scroll-top:hover{background-color:color-mix(in srgb,var(--accent-color),transparent 20%);color:var(--contrast-color)}.scroll-top.active{visibility:visible;opacity:1}

/* Footer newsletter overrides (branded) */
.footer .footer-newsletter .newsletter-form{border-radius:12px;padding:8px;border:1px solid rgba(212,175,55,.35);background:rgba(255,255,255,.9)}
.footer .footer-newsletter .newsletter-form:focus-within{border-color:rgba(212,175,55,.6);box-shadow:0 0 0 .2rem rgba(212,175,55,.18)}
.footer .footer-newsletter .newsletter-form input[type=email]{padding:.65rem .9rem;border-radius:10px;background:transparent;color:inherit}
.footer .footer-newsletter .newsletter-form input[type=email]::placeholder{color:rgba(71,85,105,.8)}
.footer .footer-newsletter .newsletter-form input[type=submit]{margin:0;margin-left:8px;padding:.65rem 1rem;border-radius:10px;background:linear-gradient(135deg,var(--brand),var(--brand-600));color:#111;border:1px solid rgba(212,175,55,.45)}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover{box-shadow:0 8px 20px rgba(212,175,55,.35);transform:translateY(-1px)}
.footer .footer-newsletter .newsletter-form input[type=submit]:active{transform:translateY(0)}
@media (max-width:575.98px){
  .footer .footer-newsletter .newsletter-form{flex-direction:column;gap:.5rem}
  .footer .footer-newsletter .newsletter-form input[type=submit]{width:100%;margin-left:0}
}

/* =============================
   Hero Carousel Styles
   ============================= */
.hero-carousel-wrapper {
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 20px 60px rgba(15,23,42,.15);
}

.hero-caption-center {
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.2);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}

.hero-badge {
  background: linear-gradient(135deg, rgba(212,175,55,.9), rgba(178,141,26,.9));
  color: #111;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hero-title {
  text-shadow: 0 4px 12px rgba(0,0,0,.3);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.hero-btn-primary {
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(212,175,55,.4);
  transition: all 0.3s ease;
}

.hero-btn-outline {
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  margin: 0 8px;
}

.hero-indicator.active {
  background: rgba(212,175,55,.9);
}

.hero-indicator:not(.active) {
  background: transparent;
}

.hero-control-icon {
  background-color: rgba(255,255,255,.9);
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.scroll-indicator {
  background: rgba(255,255,255,.9);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

/* =============================
   Stats Section Styles
   ============================= */
.stats-gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-dot-pattern {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.05;
}

.stats-title {
  text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.25);
}

.stat-number {
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-underline {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  border-radius: 2px;
  margin: 0 auto;
}

/* =============================
   Listings Section Styles
   ============================= */
.listings-gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.listings-decoration-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(40px);
}

.listings-decoration-2 {
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(30px);
}

.section-title-gradient {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================
   Blog Section Styles
   ============================= */
.blog-gradient-bg {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.blog-particles-bg {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><radialGradient id="grad"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="50" cy="50" r="2" fill="url(%23grad)"><animateTransform attributeName="transform" type="translate" values="0 0;50 -20;0 0" dur="10s" repeatCount="indefinite"/></circle><circle cx="150" cy="80" r="1.5" fill="url(%23grad)"><animateTransform attributeName="transform" type="translate" values="0 0;-30 15;0 0" dur="12s" repeatCount="indefinite"/></circle><circle cx="100" cy="120" r="2.5" fill="url(%23grad)"><animateTransform attributeName="transform" type="translate" values="0 0;25 -30;0 0" dur="15s" repeatCount="indefinite"/></circle></svg>');
  opacity: 0.6;
}

/* =============================
   Professional Buttons
   ============================= */
.btn-professional {
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.btn-professional:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
  color: #111;
}

.btn-professional:active {
  transform: translateY(0);
}

.btn-professional:focus {
  color: #111;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3), 0 0 0 0.2rem rgba(212,175,55,0.25);
}

/* =============================
   Card Hover Effects
   ============================= */
.card-professional {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(15,23,42,.08);
}

.card-professional:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15,23,42,.15);
}

.card-professional img {
  transition: transform 0.3s ease;
}

.card-professional:hover img {
  transform: scale(1.05);
}

/* =============================
   Professional Links
   ============================= */
.link-professional {
  color: var(--muted);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.link-professional:hover {
  color: var(--ink);
}

.link-professional i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.link-professional:hover i {
  transform: translateX(4px);
}

/* =============================
   Badge Styles
   ============================= */
.badge-professional {
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.badge-date {
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

/* =============================
   Price Display
   ============================= */
.price-gradient {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================
   Icon Sizes
   ============================= */
.icon-sm {
  font-size: 0.85rem;
}

.icon-md {
  font-size: 1rem;
}

.icon-lg {
  font-size: 1.2rem;
}

/* =============================
   Galerie Secondaire Moderne
   ============================= */
.gallery-secondary {
  display: flex;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  height: 160px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(245,158,11,0.9));
  backdrop-filter: blur(3px);
}

.gallery-overlay-text {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 576px) {
  .gallery-secondary {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .gallery-item {
    height: 140px;
  }
}
