/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --df-black: #0b0b0d;
  --df-black-2: #131315;
  --df-red: #d81f2e;
  --df-red-dark: #7a1017;
  --df-blue: #2b2f6b;
  --df-blue-dark: #1c1e4a;
  --df-green: #1f6b2e;
  --df-green-dark: #123f1b;
  --df-gold: #a67c1e;
  --df-gold-dark: #6e5312;
  --df-text-light: #f5f5f5;
  --df-text-muted: #b9b9bd;
  --df-font-heading: "Anton", "Poppins", sans-serif;
  --df-font-body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--df-black);
  font-family: var(--df-font-body);
  color: var(--df-text-light);
}

a {
  text-decoration: none;
}

/* ============================================================
   HEADER
============================================================ */
.df-header {
  background: var(--df-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-nav-container {
  padding: 14px 40px;
  align-items: center;
}

.df-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.df-logo-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.df-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.df-logo-title {
  font-family: var(--df-font-heading);
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
}

.df-logo-red {
  color: var(--df-red);
}

.df-logo-tagline {
  font-family: var(--df-font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--df-text-muted);
  margin-top: 4px;
}

.df-nav-menu {
  gap: 28px;
}

.df-nav-menu .nav-link {
  font-family: var(--df-font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e7e7e7 !important;
  padding: 6px 0 !important;
  position: relative;
  transition: color 0.2s ease;
}

.df-nav-menu .nav-link:hover {
  color: #fff !important;
}

.df-nav-menu .nav-link.active {
  color: #fff !important;
}

.df-nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--df-red);
}

.df-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.df-toggler span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

.df-menu-icon {
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 20px;
}

.df-menu-icon span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ============================================================
   HERO
============================================================ */
.df-hero {
  background: var(--df-black);
  position: relative;
}

.df-hero-left {
  background: var(--df-black);
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 50px;
}

.df-hero-content {
  max-width: 620px;
}

.df-hero-heading {
  font-family: var(--df-font-heading);
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.df-hero-red {
  color: var(--df-red);
}

.df-hero-sub {
  font-family: var(--df-font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--df-text-muted);
  border-top: 2px solid var(--df-red);
  padding-top: 16px;
  margin: 0 0 34px;
  max-width: 460px;
}

.df-cta-grid {
  max-width: 600px;
}

.df-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 6px;
  height: 100%;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.df-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.df-cta-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-cta-icon svg {
  width: 22px;
  height: 22px;
}

.df-cta-text {
  font-family: var(--df-font-body);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
  flex: 1;
}

.df-cta-arrow {
  font-size: 24px;
  color: #fff;
  opacity: 0.85;
  line-height: 1;
}

.df-cta-red {
  background: linear-gradient(135deg, var(--df-red), var(--df-red-dark));
}

.df-cta-blue {
  background: linear-gradient(135deg, var(--df-blue), var(--df-blue-dark));
}

.df-cta-green {
  background: linear-gradient(135deg, var(--df-green), var(--df-green-dark));
}

.df-cta-gold {
  background: linear-gradient(135deg, var(--df-gold), var(--df-gold-dark));
}

.df-hero-right {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.df-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.df-hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 13, 0.9) 0%, rgba(11, 11, 13, 0) 25%);
}

/* ============================================================
   FEATURE STRIP
============================================================ */
.df-strip {
  background: var(--df-black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 40px;
}

.df-strip-row {
  align-items: center;
}

.df-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.df-strip-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-strip-icon svg {
  width: 100%;
  height: 100%;
}

.df-strip-icon-box {
  border: 2px solid #fff;
  border-radius: 4px;
  font-family: var(--df-font-heading);
  font-size: 13px;
  color: #fff;
}

.df-strip-text {
  font-family: var(--df-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #e7e7e7;
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .df-nav-container {
    padding: 14px 20px;
  }
  .df-nav-menu {
    gap: 14px;
    padding: 16px 0;
  }
  .df-nav-menu .nav-link.active::after {
    bottom: -4px;
  }
  .df-hero-left {
    padding: 45px 30px;
  }
  .df-hero-heading {
    font-size: 40px;
  }
  .df-hero-right {
    min-height: 340px;
  }
  .df-strip {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .df-hero-heading {
    font-size: 32px;
  }
  .df-hero-sub {
    font-size: 15px;
  }
  .df-cta {
    padding: 14px;
  }
  .df-cta-text {
    font-size: 13px;
  }
  .df-hero-right {
    min-height: 260px;
  }
  .df-hero-right-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.15) 100%);
  }
  .df-strip-item {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .df-hero-heading {
    font-size: 26px;
  }
  .df-logo-title {
    font-size: 17px;
  }
  .df-logo-tagline {
    font-size: 8px;
  }
}

/* ============================================================
   CONTACT PAGE
============================================================ */

.df-eyebrow {
  display: inline-block;
  font-family: var(--df-font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--df-gold);
  margin-bottom: 12px;
}

.df-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--df-gold);
  margin-right: 10px;
  vertical-align: middle;
}

/* Page banner */
.df-page-banner {
  position: relative;
  background: var(--df-black);
  padding: 70px 0 55px;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 155, 63, 0.25);
}

.df-page-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(198, 155, 63, 0.10), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(216, 31, 46, 0.10), transparent 45%);
  pointer-events: none;
}

.df-page-title {
  font-family: var(--df-font-heading);
  font-size: 46px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}

.df-breadcrumb {
  font-family: var(--df-font-body);
  font-size: 13.5px;
  color: var(--df-text-muted);
}

.df-breadcrumb a {
  color: var(--df-text-muted);
}

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

.df-breadcrumb span {
  margin: 0 8px;
  color: var(--df-gold);
}

/* Contact section */
.df-contact-section {
  background: var(--df-black);
  padding: 70px 0;
}

.df-section-title {
  font-family: var(--df-font-heading);
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
}

.df-section-title-sm {
  font-size: 24px;
}

.df-section-sub {
  font-family: var(--df-font-body);
  font-size: 15px;
  color: var(--df-text-muted);
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 520px;
}

.df-form-card,
.df-info-card {
  background: var(--df-black-2);
  border: 1px solid rgba(198, 155, 63, 0.25);
  border-radius: 10px;
  padding: 40px;
  height: 100%;
}

.df-label {
  display: block;
  font-family: var(--df-font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--df-text-muted);
  margin-bottom: 8px;
}

.df-input {
  background: var(--df-black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--df-font-body);
  font-size: 14.5px;
}

.df-input::placeholder {
  color: #6d6d72;
}

.df-input:focus {
  background: var(--df-black);
  border-color: var(--df-gold);
  box-shadow: 0 0 0 3px rgba(198, 155, 63, 0.18);
  color: #fff;
}

select.df-input {
  color: #fff;
}

select.df-input option {
  background: var(--df-black-2);
  color: #fff;
}

.df-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af5a, var(--df-gold-dark));
  border: none;
  color: var(--df-black);
  font-family: var(--df-font-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  margin-top: 8px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.df-submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.df-submit-btn svg {
  width: 18px;
  height: 18px;
}

/* Info card */
.df-info-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.df-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-info-list li:first-child {
  padding-top: 0;
}

.df-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.df-info-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 155, 63, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-info-icon svg {
  width: 20px;
  height: 20px;
}

.df-info-label {
  display: block;
  font-family: var(--df-font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--df-gold);
  margin-bottom: 4px;
}

.df-info-value {
  display: block;
  font-family: var(--df-font-body);
  font-size: 14.5px;
  color: #e7e7e7;
  line-height: 1.5;
}

.df-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--df-font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 26px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.df-whatsapp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.df-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

.df-social-row {
  display: flex;
  gap: 12px;
}

.df-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(198, 155, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.df-social-icon:hover {
  background: rgba(198, 155, 63, 0.15);
  transform: translateY(-2px);
}

.df-social-icon svg {
  width: 19px;
  height: 19px;
}

/* Map */
.df-map-section {
  background: var(--df-black);
  padding: 0 0 0;
}

.df-map-wrap {
  width: 100%;
  height: 420px;
  border-top: 1px solid rgba(198, 155, 63, 0.25);
  filter: grayscale(0.3) invert(92%) contrast(0.9) hue-rotate(180deg);
}

.df-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.df-footer {
  background: var(--df-black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.df-footer-text {
  font-family: var(--df-font-body);
  font-size: 13px;
  color: var(--df-text-muted);
}

@media (max-width: 767px) {
  .df-page-title {
    font-size: 32px;
  }
  .df-form-card,
  .df-info-card {
    padding: 26px;
  }
  .df-section-title {
    font-size: 24px;
  }
  .df-map-wrap {
    height: 300px;
  }
}

/* ============================================================
   PREMIUM CINEMATIC HEADING FONT (Cinzel)
============================================================ */
:root {
  --df-font-heading-premium: "Cinzel", "Anton", "Poppins", serif;
}

.df-hero-heading {
  font-family: var(--df-font-heading-premium);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================================
   HERO IMAGE SLIDER
============================================================ */
.df-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.df-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.df-hero-slide.df-slide-active {
  opacity: 1;
  z-index: 1;
}

.df-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.df-hero-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.df-hero-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.df-hero-slider-dots span.df-dot-active {
  background: var(--df-red);
  transform: scale(1.25);
}

/* ============================================================
   GENERIC INNER PAGE SECTIONS (Academy / Production / Franchise)
============================================================ */
.df-inner-section {
  background: var(--df-black);
  padding: 70px 0;
}

.df-inner-section-alt {
  background: var(--df-black-2);
}

.df-placeholder-card {
  background: var(--df-black-2);
  border: 1px solid rgba(198, 155, 63, 0.25);
  border-radius: 10px;
  padding: 34px;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.df-placeholder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 155, 63, 0.55);
}

.df-placeholder-card .df-pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--df-gold), var(--df-gold-dark));
}

.df-placeholder-card .df-pc-icon svg {
  width: 26px;
  height: 26px;
}

.df-placeholder-card h4 {
  font-family: var(--df-font-heading);
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.df-placeholder-card p {
  font-family: var(--df-font-body);
  font-size: 14px;
  color: var(--df-text-muted);
  line-height: 1.7;
  margin: 0;
}

.df-dummy-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--df-black);
  background: var(--df-gold);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.df-coming-soon-box {
  border: 1px dashed rgba(198, 155, 63, 0.5);
  border-radius: 12px;
  padding: 60px 30px;
  text-align: center;
  background: rgba(198, 155, 63, 0.04);
}

.df-coming-soon-box h3 {
  font-family: var(--df-font-heading);
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0 0 12px;
}

.df-coming-soon-box p {
  font-family: var(--df-font-body);
  color: var(--df-text-muted);
  font-size: 14.5px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* External reference visit button */
.df-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(198, 155, 63, 0.5);
  color: #fff;
  font-family: var(--df-font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.df-visit-btn:hover {
  background: rgba(198, 155, 63, 0.15);
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   OTT PAGE
============================================================ */
.df-ott-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.df-ott-tab {
  font-family: var(--df-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--df-text-muted);
  background: var(--df-black-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.df-ott-tab:hover {
  color: #fff;
  border-color: rgba(198, 155, 63, 0.5);
}

.df-ott-tab.df-ott-tab-active {
  background: linear-gradient(135deg, var(--df-red), var(--df-red-dark));
  color: #fff;
  border-color: transparent;
}

.df-ott-panel {
  display: none;
}

.df-ott-panel.df-ott-panel-active {
  display: block;
  animation: dfFadeIn 0.35s ease;
}

@keyframes dfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.df-video-card {
  background: var(--df-black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.df-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 155, 63, 0.5);
}

.df-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.df-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.df-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-video-play span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(216, 31, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-video-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.df-video-info {
  padding: 14px 16px;
}

.df-video-title {
  font-family: var(--df-font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.df-video-meta {
  font-family: var(--df-font-body);
  font-size: 12px;
  color: var(--df-text-muted);
}

/* Video modal */
.df-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.df-video-modal.df-video-modal-open {
  display: flex;
}

.df-video-modal-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.df-video-modal-close button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* ============================================================
   DIGIFILMING CUSTOM OTT PLAYER
   The YouTube IFrame Player API is used only as a video source.
   Every control the audience sees/uses belongs to DigiFilming.
============================================================ */
.df-video-modal-inner {
  width: 100%;
  max-width: 1280px;
}

.df-player-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.df-player-stage:fullscreen,
.df-player-stage:-webkit-full-screen {
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  aspect-ratio: auto;
}

.df-player-videowrap {
  position: absolute;
  inset: 0;
}

.df-player-videowrap iframe,
.df-player-videowrap > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* the YouTube iframe is never directly interactive */
  -webkit-user-drag: none;
}

.df-player-shield {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
  cursor: pointer;
}

/* Hide the small lower-right YouTube watermark behind the custom OTT UI. */
.df-player-brand-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 34px;
  z-index: 3;
  pointer-events: none;
  /* background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,.88) 100%, rgba(0,0,0,.98)); */
}

/* Covers YouTube end-screen cards/recommendations after playback finishes. */
.df-player-finish {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  pointer-events: none;
  background: #000;
}
.df-player-finish.df-show {
  display: block;
}

.df-player-centerplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(216, 31, 46, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.df-player-centerplay svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.df-player-centerplay.df-hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.df-player-loading,
.df-player-buffering {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  z-index: 5;
  color: var(--df-text-light);
  font-family: var(--df-font-body);
  font-size: 13px;
}

.df-player-error {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 6;
  color: var(--df-text-light);
  font-family: var(--df-font-body);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.df-player-error.df-show {
  display: flex;
}

.df-player-error button {
  background: var(--df-red);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.df-player-buffering {
  background: transparent;
}

.df-player-loading.df-hide,
.df-player-buffering.df-hide {
  display: none;
}

.df-player-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--df-red);
  border-radius: 50%;
  animation: dfSpin 0.8s linear infinite;
}

@keyframes dfSpin {
  to { transform: rotate(360deg); }
}

.df-player-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  z-index: 100;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: none;
}

.df-player-title {
  font-family: var(--df-font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-player-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.df-player-close svg {
  width: 16px;
  height: 16px;
}

.df-player-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 16px 14px;
  background: transparent;
  z-index: 6;
  transition: opacity 0.25s ease;
}

/* Controls are intentionally persistent; never hide the custom OTT bar. */
.df-player-stage.df-controls-hidden .df-player-topbar,
.df-player-stage.df-controls-hidden .df-player-controls {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.df-player-progress {
  position: relative;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 6px;
}

.df-player-progress-track,
.df-player-progress-buffered,
.df-player-progress-filled {
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.df-player-progress-track { background: rgba(255, 255, 255, 0.25); width: 100%; }
.df-player-progress-buffered { background: rgba(255, 255, 255, 0.4); width: 0%; right: auto; }
.df-player-progress-filled { background: var(--df-red); width: 0%; right: auto; }

.df-player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(216, 31, 46, 0.35);
}

.df-player-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: black;
}

.df-player-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  padding: 0;
}

.df-player-btn svg {
  width: 20px;
  height: 20px;
}

.df-player-time {
  font-family: var(--df-font-body);
  font-size: 12.5px;
  color: var(--df-text-light);
  white-space: nowrap;
}

.df-player-spacer { flex: 1; }

.df-player-volume {
  display: flex;
  align-items: center;
  gap: 6px;
}

.df-player-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  cursor: pointer;
}

.df-player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216, 31, 46, 0.35);
}

.df-player-volume-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216, 31, 46, 0.35);
}

.df-player-settings { position: relative; }

.df-player-speed-menu {
  display: none;
  position: absolute;
  bottom: 42px;
  right: 0;
  background: rgba(15, 15, 17, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px;
  min-width: 100px;
  z-index: 8;
}

.df-player-speed-menu.df-open { display: block; }

.df-player-speed-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--df-text-muted);
  font-family: var(--df-font-body);
  font-size: 12.5px;
  padding: 7px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.df-player-speed-menu button:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.df-player-speed-menu button.df-speed-active { color: var(--df-red); font-weight: 600; }

#dfPlayerSpeedBtn {
  width: auto;
  padding: 0 8px;
  font-family: var(--df-font-body);
  font-size: 12.5px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .df-player-controls-row { gap: 6px; }
  .df-player-volume-slider { width: 46px; }
  .df-player-time { font-size: 10.5px; }
  .df-player-title { font-size: 12.5px; max-width: 60vw; }
  .df-player-topbar { padding: 10px 12px; }
  .df-player-controls { padding: 6px 10px 10px; }
  #dfPlayerSpeedBtn { font-size: 11px; }
}

/* ============================================================
   ABOUT US PAGE
============================================================ */
.df-about-photo {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(198, 155, 63, 0.3);
}

.df-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.df-about-name {
  font-family: var(--df-font-heading);
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  margin: 16px 0 2px;
}

.df-about-role {
  font-family: var(--df-font-body);
  color: var(--df-gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.df-about-block {
  margin-bottom: 34px;
}

.df-about-block h3 {
  font-family: var(--df-font-heading);
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.df-about-block p {
  font-family: var(--df-font-body);
  color: var(--df-text-muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
}

.df-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.df-stat {
  min-width: 110px;
}

.df-stat-num {
  font-family: var(--df-font-heading);
  font-size: 32px;
  color: var(--df-gold);
  line-height: 1;
}

.df-stat-label {
  font-family: var(--df-font-body);
  font-size: 12px;
  color: var(--df-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* ============================================================
   FOOTER SOCIAL ICONS (all pages)
============================================================ */
.df-footer {
  padding: 30px 0;
}

.df-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.df-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198, 155, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.df-footer-social a:hover {
  background: rgba(198, 155, 63, 0.18);
  transform: translateY(-2px);
}

.df-footer-social a svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 767px) {
  .df-footer-top {
    justify-content: center;
    text-align: center;
  }
}

.df-footer-links-row,
.df-footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-footer-col-title {
  font-family: var(--df-font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--df-text-light);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.df-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.df-footer-links a {
  font-family: var(--df-font-body);
  font-size: 12.5px;
  color: var(--df-text-muted);
  transition: color 0.2s ease;
}

.df-footer-links a:hover {
  color: #c99b3f;
}

.df-footer-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12.5px;
}

@media (max-width: 767px) {
  .df-footer-links-row,
  .df-footer-legal-row {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   WHAT WE DO / CONTENT LISTS
============================================================ */
.df-vertical-block {
  margin-bottom: 56px;
}

.df-vertical-tag {
  display: inline-block;
  font-family: var(--df-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--df-black);
  background: #c99b3f;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.df-plain-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
}

.df-plain-list li {
  font-family: var(--df-font-body);
  font-size: 14.5px;
  color: var(--df-text-muted);
  padding-left: 16px;
  position: relative;
}

.df-plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #c99b3f;
  border-radius: 50%;
}

.df-tagline-strip {
  font-family: var(--df-font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--df-text-light);
  border-left: 3px solid var(--df-red);
  padding-left: 14px;
  margin: 18px 0;
}

/* ============================================================
   CONSULTATION PAGE EXTRA FIELDS
============================================================ */
.df-form-note {
  font-family: var(--df-font-body);
  font-size: 12.5px;
  color: var(--df-text-muted);
  margin-top: 10px;
}


.df-player-stage:fullscreen .df-player-controls,
.df-player-stage:-webkit-full-screen .df-player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 100 !important;
}

.df-player-stage:fullscreen .df-player-topbar,
.df-player-stage:-webkit-full-screen .df-player-topbar {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 101 !important;
}

/* OTT player mobile controls */
@media (max-width: 575.98px) {
  .df-video-modal {
    padding: 0;
  }
  .df-video-modal-inner {
    max-width: none;
    width: 100%;
  }
  .df-player-stage {
    border-radius: 0;
  }
  .df-player-controls {
    padding: 7px 9px 10px;
  }
  .df-player-controls-row {
    gap: 6px;
  }
  .df-player-btn {
    width: 30px;
    height: 30px;
  }
  .df-player-volume-slider {
    width: 58px;
  }
  .df-player-time {
    font-size: 11px;
  }
  .df-player-progress {
    height: 18px;
    margin-bottom: 3px;
  }
  .df-player-progress-track,
  .df-player-progress-buffered,
  .df-player-progress-filled {
    height: 5px;
  }
  .df-player-progress-thumb {
    width: 14px;
    height: 14px;
  }
}

/* ================= Content protection (deterrent only) ================= */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
