/* ==========================================================================
   DeDominic & Associates - Pixel-Perfect Bootstrap 5+ Stylesheet
   Design source: https://www.dedominic.com/
   Color Palette:
     - Deep Forest Teal: #0D3D37
     - Warm Gold / Tan: #C9AD7B
     - Primary Accent Orange: #FF5423
     - Pure White: #FFFFFF
   Typography:
     - Headings: Anton (Uppercase, condensed bold)
     - Body: Epilogue
   ========================================================================== */

/* --------------------------------------------------
   1. Font Face Declarations (100% Local Assets - Zero CDN)
   -------------------------------------------------- */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton.woff2') format('woff2');
}

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/anton.woff2') format('woff2');
}

@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/epilogue.woff2') format('woff2');
}

@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/epilogue.woff2') format('woff2');
}

/* --------------------------------------------------
   2. Root Theme Variables
   -------------------------------------------------- */
:root {
  --dd-teal: #0D3D37;
  --dd-teal-dark: #092C27;
  --dd-gold: #C9AD7B;
  --dd-gold-light: #DFCDA8;
  --dd-orange: #FF5423;
  --dd-orange-hover: #E34213;
  --dd-white: #FFFFFF;
  --dd-dark-text: #191A1A;
  --dd-light-text: #F7F7F4;
  --dd-font-heading: 'Anton', sans-serif;
  --dd-font-body: 'Epilogue', sans-serif;
}

/* --------------------------------------------------
   3. Global Resets
   -------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--dd-font-body);
  color: var(--dd-dark-text);
  background-color: var(--dd-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.dd-font-heading {
  font-family: var(--dd-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1.15;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------
   4. Buttons System (Exact match: rectangular, 4px radius)
   -------------------------------------------------- */
.dd-btn {
  display: inline-block;
  font-family: var(--dd-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
}

.dd-btn-orange {
  background-color: var(--dd-orange);
  color: var(--dd-white);
  border-color: var(--dd-orange);
}

.dd-btn-orange:hover,
.dd-btn-orange:focus {
  background-color: var(--dd-orange-hover);
  border-color: var(--dd-orange-hover);
  color: var(--dd-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 84, 35, 0.35);
}

.dd-btn-outline-orange {
  background-color: var(--dd-white);
  color: var(--dd-orange);
  border-color: var(--dd-orange);
}

.dd-btn-outline-orange:hover {
  background-color: var(--dd-orange);
  color: var(--dd-white);
}

.dd-btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

.dd-btn-lg {
  padding: 0.8rem 2.2rem;
  font-size: 1.15rem;
}

/* Legacy alias support */
.dd-btn-primary {
  background-color: var(--dd-orange);
  color: var(--dd-white);
  border-color: var(--dd-orange);
}
.dd-btn-primary:hover {
  background-color: var(--dd-orange-hover);
  border-color: var(--dd-orange-hover);
  color: var(--dd-white);
}
.dd-btn-outline-white {
  background-color: transparent;
  color: var(--dd-white);
  border-color: var(--dd-white);
}
.dd-btn-outline-white:hover {
  background-color: var(--dd-white);
  color: var(--dd-teal);
}

/* --------------------------------------------------
   5. Header / Navigation (Deep Forest Green #074038)
   -------------------------------------------------- */
.dd-site-header {
  background-color: #074038;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.dd-brand-logo {
  height: 90px;
  max-height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.dd-nav-link {
  font-family: var(--dd-font-body);
  color: #D85A2A !important;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem !important;
  transition: color 0.2s;
}

.dd-nav-link:hover,
.dd-nav-link.active {
  color: #FFFFFF !important;
}

.dd-login-link {
  font-family: var(--dd-font-body);
  color: #D85A2A;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 1.25rem;
  transition: color 0.2s;
}

.dd-login-link:hover {
  color: #FFFFFF;
}

.dd-header-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 1.25rem;
}

.dd-header-social-icon {
  color: #D85A2A;
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
}

.dd-header-social-icon:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.dd-dropdown-menu {
  background-color: #074038;
  border: 1px solid rgba(216, 90, 42, 0.35);
  border-radius: 2px;
  padding: 0.5rem 0;
}

.dd-dropdown-item {
  color: #D85A2A;
  font-family: var(--dd-font-body);
  font-size: 0.92rem;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s;
}

.dd-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

/* Offcanvas Mobile Navigation */
.dd-offcanvas {
  background-color: #074038;
  color: #D85A2A;
}

.dd-offcanvas .nav-link {
  color: #D85A2A;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(216, 90, 42, 0.2);
}

.dd-offcanvas .nav-link:hover,
.dd-offcanvas .nav-link.active {
  color: #FFFFFF;
}

/* --------------------------------------------------
   6. Hero Section (Overlaid Buttons on hero-bg.png)
   -------------------------------------------------- */
.dd-hero-container {
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  width: 100%;
}

.dd-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.dd-hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlaid action buttons matching user reference media_1789978331232.png */
.dd-hero-buttons-overlay {
  position: absolute;
  top: 70%;
  left: 47%;
  right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 5;
}

.dd-hero-top-btns {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  justify-content: center;
  align-items: stretch;
}

.dd-btn-hero-solid {
  background-color: #FF5400;
  color: #FFFFFF !important;
  border: 2px solid #FF5400;
  border-radius: 2px;
  font-family: var(--dd-font-body);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.05vw, 0.96rem);
  line-height: 1.25;
  text-align: center;
  padding: 0.65rem 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 8px rgba(255, 84, 0, 0.2);
}

.dd-btn-hero-solid:hover {
  background-color: #E04800;
  border-color: #E04800;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.35);
}

.dd-btn-hero-outline {
  background-color: #FFFFFF;
  color: #FF5400 !important;
  border: 2px solid #FF5400;
  border-radius: 2px;
  font-family: var(--dd-font-body);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.05vw, 0.96rem);
  line-height: 1.25;
  text-align: center;
  padding: 0.65rem 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease-in-out;
}

.dd-btn-hero-outline:hover {
  background-color: #FF5400;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.25);
}

.dd-btn-hero-bottom {
  max-width: 320px;
  width: 100%;
  padding: 0.65rem 1.4rem;
}

/* --------------------------------------------------
   7. Marquee Banner (Deep Forest Teal + Gold Anton)
   -------------------------------------------------- */
.dd-marquee-wrap {
  background-color: var(--dd-teal);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 173, 123, 0.25);
  border-bottom: 1px solid rgba(201, 173, 123, 0.25);
}

.dd-marquee-track {
  display: inline-flex;
  animation: ddMarquee 26s linear infinite;
}

.dd-marquee-item {
  font-family: var(--dd-font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  color: var(--dd-gold);
  letter-spacing: 0.05em;
  padding: 0 2.5rem;
  margin: 0;
  font-weight: 900;
}

@keyframes ddMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------
   8. Growth & Value Proposition (Deep Forest Teal)
   -------------------------------------------------- */
.dd-growth-section {
  background-color: var(--dd-teal);
  color: var(--dd-white);
  padding: 5.5rem 0;
}

.dd-growth-title {
  color: var(--dd-white);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.18;
}

.dd-growth-title .dd-title-line {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--dd-orange);
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.dd-growth-lead,
.dd-growth-intro,
.dd-growth-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #C9AD7B;
  margin-bottom: 1.25rem;
}

.dd-growth-lead {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.dd-growth-intro {
  margin-bottom: 1.25rem;
}

.dd-growth-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.dd-growth-bullets li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: #C9AD7B;
  font-size: 1.02rem;
  line-height: 1.5;
}

.dd-growth-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9AD7B;
  font-size: 1.4rem;
  line-height: 1;
  top: -1px;
}

.dd-growth-section strong {
  color: #C9AD7B;
  font-weight: 700;
}

.dd-growth-img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.dd-growth-img-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 991.98px) {
  .dd-growth-img-wrapper,
  .dd-growth-img-wrapper img {
    min-height: 380px;
    height: 400px;
  }
}

/* --------------------------------------------------
   9. Why Choose Us / Forbes (Warm Gold / Tan #C9AD7B)
   -------------------------------------------------- */
.dd-why-choose-section {
  position: relative;
  background-color: var(--dd-gold);
  color: var(--dd-white);
  padding: 5.5rem 0 6.5rem;
  text-align: center;
}

.dd-why-choose-title {
  color: var(--dd-white);
  font-family: 'Anton', var(--dd-font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dd-forbes-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.dd-forbes-heading {
  color: var(--dd-white);
  font-family: 'Anton', var(--dd-font-heading);
  font-size: clamp(1.4rem, 2.35vw, 2.15rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.02em;
  text-align: left;
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.dd-btn-signup {
  background-color: #FF5400;
  border-color: #FF5400;
  color: #FFFFFF !important;
  font-family: var(--dd-font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 3.2rem;
  border-radius: 2px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.dd-btn-signup:hover {
  background-color: #E04800;
  border-color: #E04800;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 84, 0, 0.35);
}

/* Downward pointed chevron divider */
.dd-chevron-divider {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 36px;
  line-height: 0;
  z-index: 3;
}

.dd-chevron-divider svg {
  width: 100%;
  height: 36px;
  display: block;
}

/* --------------------------------------------------
   10. Historical Photo Gallery (Pure White #FFFFFF)
   -------------------------------------------------- */
.dd-gallery-section {
  background-color: var(--dd-white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.dd-gallery-container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1400px) {
  .dd-gallery-container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.dd-gallery-carousel {
  position: relative;
  cursor: grab;
  user-select: none;
}

.dd-gallery-carousel:active,
.dd-gallery-carousel.owl-grab {
  cursor: grabbing;
}

.dd-gallery-carousel img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.dd-gallery-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.dd-gallery-carousel .owl-item {
  display: flex;
  flex-direction: column;
}

.dd-gallery-item {
  width: 100%;
  height: 100%;
}

.dd-gallery-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dd-gallery-img-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #EAEAEA;
  margin-bottom: 1rem;
}

.dd-gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.dd-gallery-card:hover .dd-gallery-img-container img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.dd-gallery-caption {
  font-family: var(--dd-font-heading);
  font-size: 0.95rem;
  color: var(--dd-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: auto;
}

/* Circular navigation arrow buttons */
.dd-nav-circle-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--dd-orange);
  color: var(--dd-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(216, 90, 42, 0.4);
  transition: transform 0.2s, background-color 0.2s;
}

.dd-nav-circle-btn:hover {
  background-color: var(--dd-orange-hover);
  transform: translateY(-50%) scale(1.1);
}

.dd-nav-circle-btn.prev {
  left: 16px;
}

.dd-nav-circle-btn.next {
  right: 16px;
}

@media (min-width: 992px) {
  .dd-nav-circle-btn.prev {
    left: 24px;
  }
  .dd-nav-circle-btn.next {
    right: 24px;
  }
}

/* --------------------------------------------------
   11. Testimonials (Warm Gold / Tan #C9AD7B)
   -------------------------------------------------- */
.dd-testimonials-section {
  background-color: var(--dd-gold);
  padding: 5.5rem 0;
  text-align: center;
}

.dd-testimonials-title {
  color: var(--dd-white);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  margin-bottom: 3.5rem;
  letter-spacing: 0.03em;
}

.dd-testimonials-carousel {
  cursor: grab;
  user-select: none;
}

.dd-testimonials-carousel:active,
.dd-testimonials-carousel.owl-grab {
  cursor: grabbing;
}

.dd-testimonials-carousel img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.dd-testimonials-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.dd-testimonials-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}

.dd-testimonials-carousel .dd-testi-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dd-testimonial-card {
  background-color: var(--dd-white);
  border-radius: 4px;
  padding: 2.75rem 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Testimonial avatar circular frame */
.dd-testimonial-avatar-wrap {
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
  display: block;
}

.dd-testimonials-carousel .owl-item img.dd-testimonial-avatar,
.dd-testimonials-carousel img.dd-testimonial-avatar,
.dd-testimonial-card .dd-testimonial-avatar,
.dd-testimonial-avatar {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin: 0 auto 1.5rem !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
}

.dd-testimonial-avatar-wrap img.dd-testimonial-avatar {
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.dd-testimonial-author {
  font-family: var(--dd-font-heading);
  font-size: 1.15rem;
  color: var(--dd-gold);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.dd-testimonial-quote {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* Hide default Owl dots and nav for custom styled controls */
.dd-gallery-carousel .owl-dots,
.dd-gallery-carousel .owl-nav,
.dd-testimonials-carousel .owl-dots,
.dd-testimonials-carousel .owl-nav {
  display: none !important;
}

/* Testimonial circular arrow buttons centered below */
.dd-testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}

.dd-testimonials-nav .dd-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--dd-orange);
  color: var(--dd-white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 12px rgba(255, 84, 35, 0.3);
}

.dd-testimonials-nav .dd-circle-btn:hover {
  background-color: var(--dd-orange-hover);
  transform: scale(1.1);
}

/* --------------------------------------------------
   12. Feedback & Contact (Deep Forest Teal #0D3D37)
   -------------------------------------------------- */
.dd-feedback-contact-section {
  background-color: var(--dd-teal);
  color: var(--dd-white);
  padding: 5.5rem 0;
}

.dd-feedback-title,
.dd-contact-title {
  color: var(--dd-gold);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.dd-feedback-text,
.dd-contact-subtext {
  color: #E6EAE8;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.dd-contact-form .form-label {
  color: var(--dd-white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.dd-contact-form .form-control {
  border-radius: 2px;
  border: 1px solid #D5D5D0;
  padding: 0.7rem 0.9rem;
  background-color: var(--dd-white);
  color: var(--dd-dark-text);
  font-size: 0.95rem;
}

.dd-contact-form .form-control:focus {
  border-color: var(--dd-orange);
  box-shadow: 0 0 0 3px rgba(255, 84, 35, 0.25);
}

.dd-contact-form .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* --------------------------------------------------
   13. Footer (Warm Gold / Tan #C9AD7B)
   -------------------------------------------------- */
.dd-site-footer {
  background-color: var(--dd-gold);
  color: var(--dd-white);
  padding: 4.5rem 0 3rem;
}

.dd-footer-brand {
  font-family: var(--dd-font-heading);
  font-size: 1.85rem;
  color: var(--dd-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.dd-footer-copy {
  color: var(--dd-white);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.dd-footer-link {
  color: var(--dd-white);
  text-decoration: underline;
  font-size: 0.95rem;
}

.dd-footer-link:hover {
  color: #FFF2D6;
}

.dd-footer-col-title {
  font-family: var(--dd-font-heading);
  font-size: 1.35rem;
  color: var(--dd-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.dd-footer-address,
.dd-footer-contact-info {
  color: var(--dd-white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dd-footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.dd-footer-social-icon {
  color: var(--dd-white);
  display: inline-flex;
  transition: opacity 0.2s, transform 0.2s;
}

.dd-footer-social-icon:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* --------------------------------------------------
   14. Inner Pages Utility Classes
   -------------------------------------------------- */
.dd-badge-gold {
  display: inline-block;
  background-color: rgba(201, 173, 123, 0.15);
  color: var(--dd-gold);
  border: 1px solid var(--dd-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.dd-stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 173, 123, 0.25);
  border-radius: 4px;
  padding: 1.5rem;
  height: 100%;
}

.dd-stat-number {
  font-family: var(--dd-font-heading);
  font-size: 2.2rem;
  color: var(--dd-gold);
  margin-bottom: 0.5rem;
}

.dd-stat-label {
  font-size: 0.95rem;
  color: #D6DBD8;
  margin-bottom: 0;
}

.dd-form-group {
  margin-bottom: 1.25rem;
}

.dd-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.dd-social-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.dd-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--dd-white);
  transition: all 0.2s;
}

.dd-social-btn:hover {
  background-color: var(--dd-orange);
  color: var(--dd-white);
  transform: translateY(-2px);
}

.dd-footer-col {
  margin-bottom: 1.5rem;
}

.dd-footer-title {
  font-family: var(--dd-font-heading);
  font-size: 1.25rem;
  color: var(--dd-white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.dd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.dd-image-wrapper {
  overflow: hidden;
  border-radius: 4px;
}

.dd-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

