/* ══════════════════════════════════════════════════════════════════
   MEDIA FOCUS AGENCY THEME — CORE STYLESHEET (CSS)
   ══════════════════════════════════════════════════════════════════ */

/* ── HEADER & NAVIGATION ── */
.mf-site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 42, 82, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mf-site-header.scrolled {
  background: rgba(9, 28, 56, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(244, 168, 32, 0.3);
}

.mf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.mf-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.mf-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mf-gold) 0%, var(--mf-gold-h) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(244, 168, 32, 0.35);
}
.mf-logo-text-wrap {
  display: flex;
  flex-direction: column;
}
.mf-logo-title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mf-logo-title span {
  color: var(--mf-gold);
}
.mf-logo-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Desktop Menu Links */
.mf-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.mf-nav-link {
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: all 0.2s ease;
}
.mf-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mf-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.mf-nav-link:hover, .mf-nav-link.active {
  color: var(--mf-gold);
}
.mf-nav-link:hover::after, .mf-nav-link.active::after {
  transform: scaleX(1);
}

/* Header Actions */
.mf-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.mf-lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 6px;
}
.mf-lang-btn {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.2s;
}
.mf-lang-btn.active {
  background: var(--mf-gold);
  color: #fff;
}
.mf-lang-btn:hover:not(.active) {
  color: #fff;
}

/* CTA Buttons */
.mf-btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--mf-gold);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(244, 168, 32, 0.35);
}
.mf-btn-header-cta:hover {
  background: var(--mf-gold-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 168, 32, 0.5);
}

/* Mobile Hamburger */
.mf-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
}

/* ── MOBILE DRAWER ── */
.mf-mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  background: var(--mf-blue-dark);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-mobile-drawer.open {
  right: 0;
}
body.lang-en .mf-mobile-drawer {
  right: auto;
  left: -100%;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
body.lang-en .mf-mobile-drawer.open {
  left: 0;
}

.mf-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mf-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mf-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mf-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.mf-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.mf-drawer-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.mf-drawer-links a:hover {
  color: var(--mf-gold);
}

/* ── BUTTONS ── */
.mf-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--mf-gold) 0%, var(--mf-gold-h) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(244, 168, 32, 0.4);
  transition: all 0.25s ease;
}
.mf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 168, 32, 0.55);
}

.mf-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}
.mf-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

.mf-btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}
.mf-btn-cta-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ── SECTION HEADERS ── */
.mf-section-header-center {
  text-align: center;
  margin-bottom: 48px;
}
.mf-section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.mf-section-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--mf-gold);
  background: var(--mf-gold-l);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mf-section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--mf-blue-d);
  line-height: 1.3;
}
.mf-title-divider {
  width: 50px;
  height: 3px;
  background: var(--mf-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ── HERO SECTION ── */
.mf-hero-section {
  background: linear-gradient(135deg, var(--mf-blue-d) 0%, var(--mf-blue-dark) 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.mf-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 168, 32, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mf-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.mf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(244, 168, 32, 0.15);
  border: 1px solid rgba(244, 168, 32, 0.35);
  color: var(--mf-gold);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.mf-hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}
.mf-hero-title .highlight {
  color: var(--mf-gold);
  position: relative;
}
.mf-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 580px;
}
.mf-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mf-hero-visual {
  position: relative;
}
.mf-hero-main-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.mf-hero-badge-floating {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ffffff;
  color: var(--mf-blue-d);
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
body.lang-en .mf-hero-badge-floating {
  right: auto;
  left: -20px;
}
.mf-hero-badge-floating i {
  font-size: 24px;
  color: var(--mf-gold);
}
.mf-hero-badge-floating strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.mf-hero-badge-floating span {
  font-size: 11px;
  color: var(--mf-muted);
  font-weight: 700;
}

/* ── INNER HERO BANNER ── */
.mf-inner-hero {
  background: linear-gradient(135deg, var(--mf-blue-d) 0%, var(--mf-blue-dark) 100%);
  padding: 70px 0;
  color: #ffffff;
  text-align: center;
  border-bottom: 3px solid var(--mf-gold);
}
.mf-inner-hero-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin: 12px 0 14px;
}
.mf-inner-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── STATS COUNTER BAR ── */
.mf-stats-bar {
  background: #ffffff;
  padding: 40px 0;
  box-shadow: 0 10px 30px rgba(27, 63, 114, 0.06);
  border-bottom: 1px solid var(--mf-border);
}
.mf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mf-stat-item {
  text-align: center;
  padding: 10px;
}
.mf-stat-icon {
  font-size: 24px;
  color: var(--mf-gold);
  margin-bottom: 8px;
}
.mf-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--mf-blue-d);
  line-height: 1.1;
  margin-bottom: 4px;
}
.mf-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--mf-muted);
}

/* ── SERVICES CARDS GRID ── */
.mf-services-highlight-section {
  padding: 90px 0;
  background: var(--mf-light);
}
.mf-services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.mf-service-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--mf-border);
  box-shadow: var(--mf-shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mf-service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--mf-shadow-h);
  border-color: rgba(244, 168, 32, 0.4);
}
.mf-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--mf-gold-l);
  color: var(--mf-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.mf-service-box:hover .mf-service-icon {
  background: var(--mf-gold);
  color: #fff;
}
.mf-service-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--mf-blue-d);
  margin-bottom: 12px;
}
.mf-service-text {
  font-size: 14px;
  color: var(--mf-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.mf-service-link {
  color: var(--mf-gold);
  font-weight: 800;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.mf-service-link:hover {
  color: var(--mf-gold-h);
  gap: 10px;
}

/* ── WORKS HIGHLIGHT SECTION ── */
.mf-portfolio-highlight-section {
  padding: 90px 0;
  background: #ffffff;
}
.mf-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.mf-work-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--mf-shadow);
  border: 1px solid var(--mf-border);
  position: relative;
  background: #fff;
}
.mf-work-thumb-wrap {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, var(--mf-blue) 0%, var(--mf-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mf-work-placeholder {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.15);
}
.mf-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 28, 56, 0.95) 0%, rgba(9, 28, 56, 0.3) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.mf-work-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--mf-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mf-work-overlay h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.mf-work-btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
}

/* ── CTA BANNER SECTION ── */
.mf-cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--mf-blue-d) 0%, var(--mf-blue-dark) 100%);
  position: relative;
}
.mf-cta-banner-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.mf-cta-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}
.mf-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.7;
}

/* ── FOOTER ── */
.mf-site-footer {
  background: linear-gradient(135deg, var(--mf-blue-d) 0%, var(--mf-blue-dark) 100%);
  color: #ffffff;
  padding-top: 80px;
  position: relative;
  border-top: 4px solid var(--mf-gold);
}
.mf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.mf-footer-col h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--mf-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.mf-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background: var(--mf-gold);
}
body.lang-en .mf-footer-col h4::after {
  right: auto;
  left: 0;
}
.mf-footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}
.mf-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mf-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mf-footer-links a:hover {
  color: var(--mf-gold);
  transform: translateX(-4px);
}
body.lang-en .mf-footer-links a:hover {
  transform: translateX(4px);
}

.mf-contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mf-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}
.mf-contact-icon {
  font-size: 16px;
  color: var(--mf-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social icons */
.mf-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mf-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.mf-social-btn:hover {
  background: var(--mf-gold);
  border-color: var(--mf-gold);
  transform: translateY(-3px);
  color: #fff;
}

/* Copyright Bar */
.mf-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Back to Top */
.mf-back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mf-blue);
  color: #ffffff;
  border: 2px solid var(--mf-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.mf-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.mf-back-to-top:hover {
  background: var(--mf-gold);
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.mf-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 990;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.mf-floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  .mf-nav-links {
    display: none;
  }
  .mf-mobile-toggle {
    display: block;
  }
  .mf-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mf-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .mf-hero-cta-group {
    justify-content: center;
  }
  .mf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .mf-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .mf-cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mf-nav-inner {
    height: 70px;
  }
  .mf-btn-header-cta span.btn-text {
    display: none;
  }
  .mf-hero-title {
    font-size: 32px;
  }
  .mf-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mf-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mf-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
