/*==================== GOOGLE FONTS ====================*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@300;400;500;600&display=swap');

/*==================== VARIABLES CSS ====================*/
:root {
  --header-height: 4.5rem;

  /* Premium Dark Theme with Gold/Yellow Accents */
  --hue-primary: 43;
  --first-color: hsl(var(--hue-primary), 80%, 55%);
  --first-color-alt: hsl(var(--hue-primary), 85%, 45%);
  --first-color-light: hsl(var(--hue-primary), 80%, 85%);
  --first-color-rgb: 212, 175, 55;

  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 75%);
  --text-color-light: hsl(0, 0%, 55%);

  --body-color: hsl(225, 10%, 6%);
  --container-color: hsl(225, 10%, 10%);
  --card-color: hsl(225, 10%, 14%);
  --border-color: hsl(225, 10%, 18%);

  --body-font: 'Inter', sans-serif;
  --title-font: 'Outfit', sans-serif;

  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: .875rem;
  --smaller-font-size: .813rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 800;
  --font-black: 900;

  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/*==================== REUSABLE ====================*/
.section {
  padding: 7rem 0 3rem;
}

.section-title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}

.subtitle {
  display: block;
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--mb-0-5);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.container {
  max-width: 1200px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

@media screen and (min-width: 1240px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.text-center {
  text-align: center;
}

/*==================== BUTTONS ====================*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: var(--normal-font-size);
}

.btn-primary {
  background-color: var(--first-color);
  color: hsl(225, 10%, 4%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--first-color-alt);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--first-color-rgb), 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--title-color);
}

.btn-secondary:hover {
  color: var(--first-color);
}

.btn-outline {
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--title-color);
  padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
  border-color: var(--first-color);
  color: var(--first-color);
}

/*==================== HEADER & NAV ====================*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.header.scroll-header {
  background-color: rgba(15, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img,
.logo .custom-logo,
.custom-logo-link img {
  height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  max-height: 48px !important;
  object-fit: contain;
}

.logo-text {
  font-family: var(--title-font);
  font-size: var(--h2-font-size);
  color: var(--title-color);
  font-weight: var(--font-black);
  letter-spacing: -1px;
}

.logo-text span {
  color: var(--first-color);
  font-weight: var(--font-light);
}

/* Header Actions (lang + toggle) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  font-family: var(--title-font);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--first-color);
  background-color: rgba(var(--first-color-rgb), 0.1);
}

.lang-divider {
  color: var(--border-color);
  font-size: var(--smaller-font-size);
}

/* Mobile Navigation */
@media screen and (max-width: 967px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--container-color);
    padding: 6rem 2rem 2rem;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: var(--z-modal);
  }

  .nav.show-menu {
    right: 0;
  }
}

.nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav-link {
  font-family: var(--title-font);
  font-weight: var(--font-medium);
  font-size: var(--h3-font-size);
  color: var(--title-color);
  transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--first-color);
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  z-index: 10;
}

.nav-toggle {
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle i {
  font-size: 0.65rem;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.75rem;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-link {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  transition: 0.3s;
  padding: 0.25rem 0;
}

.nav-dropdown-link:hover {
  color: var(--first-color);
  padding-left: 5px;
}

@media screen and (min-width: 968px) {
  .nav-toggle, .nav-close {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    column-gap: 2rem;
    align-items: center;
  }

  .nav-link {
    font-size: var(--normal-font-size);
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background-color: var(--container-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 50;
  }

  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
  }

  .nav-dropdown-link {
    font-size: var(--small-font-size);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
  }

  .nav-dropdown-link:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
    padding-left: 0.75rem;
  }
}

/*==================== HERO ====================*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--body-color);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8,8,10,0.9) 0%, rgba(18,18,22,0.6) 50%, rgba(8,8,10,0.9) 100%);
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(var(--first-color-rgb), 0.1);
  color: var(--first-color);
  border: 1px solid rgba(var(--first-color-rgb), 0.3);
  border-radius: 100px;
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1-5);
  letter-spacing: 1px;
}

.hero-title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--mb-1);
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px var(--first-color);
  display: inline-block;
}

.hero-description {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-light);
  margin-bottom: var(--mb-2-5);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.5rem;
  color: var(--title-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/*==================== SERVICES ====================*/
.services-container {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background-color: var(--card-color);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: 0.4s;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--first-color-rgb), 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-1-5);
  transition: 0.4s;
}

.service-icon.active {
  background-color: var(--first-color);
  color: var(--body-color);
}

.service-card:hover .service-icon {
  background-color: var(--first-color);
  color: var(--body-color);
}

.service-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.service-description {
  margin-bottom: var(--mb-2);
  color: var(--text-color-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--title-font);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  color: var(--title-color);
  transition: 0.3s;
}

.service-link i {
  transition: transform 0.3s;
}

.service-card:hover .service-link {
  color: var(--first-color);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

.service-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(var(--first-color-rgb), 0.05) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover .service-hover-bg {
  opacity: 1;
}

/*==================== ABOUT ====================*/
.about-container {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
}

@media screen and (min-width: 968px) {
  .about-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-description {
  margin-bottom: var(--mb-2-5);
  font-size: 1.1rem;
}

.about-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-number {
  font-size: var(--h1-font-size);
  color: var(--first-color);
  margin-bottom: 0.25rem;
}

.stat-text {
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  line-height: 1.3;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  transform: scale(1.05);
  transition: 1s ease;
}

.about-image:hover img {
  transform: scale(1);
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--body-color) 0%, transparent 50%);
}

.experience-card {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-card i {
  font-size: 2rem;
  color: var(--first-color);
}

.experience-card h4 {
  font-size: var(--normal-font-size);
  margin-bottom: 0.25rem;
}

.experience-card p {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/*==================== SHOWREEL ====================*/
.showreel-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.showreel-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: 0.4s;
  gap: 1rem;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--first-color-rgb), 0.2);
  border: 2px solid var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--first-color);
  transition: 0.3s;
}

.video-play-overlay:hover .play-btn-circle {
  background: var(--first-color);
  color: var(--body-color);
  transform: scale(1.1);
}

.video-play-overlay span {
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  letter-spacing: 1px;
}

/*==================== FEATURED PROJECTS ====================*/
.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.film-card {
  transition: transform 0.4s ease;
}

.film-card:hover {
  transform: translateY(-8px);
}

.film-poster {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--card-color), var(--container-color));
  text-align: center;
}

.film-poster-placeholder i {
  font-size: 3rem;
  color: var(--first-color);
  opacity: 0.5;
}

.film-poster-placeholder span {
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
}

.film-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.film-year {
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  font-size: var(--h3-font-size);
  color: var(--first-color);
}

.film-role {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}

.film-title {
  margin-top: 0.75rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
}

/*==================== CTA ====================*/
.cta {
  padding-bottom: 7rem;
}

.cta-container {
  background: linear-gradient(135deg, var(--card-color) 0%, var(--container-color) 100%);
  padding: 5rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.cta-title {
  margin-bottom: var(--mb-1);
  position: relative;
  z-index: 2;
}

.cta-description {
  margin-bottom: var(--mb-2-5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
  position: relative;
  z-index: 2;
}

.cta-btn {
  position: relative;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.15;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  top: -150px;
  left: -150px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background-color: #fff;
  bottom: -100px;
  right: -50px;
}

/*==================== FOOTER ====================*/
.footer {
  background-color: #050505;
  padding-top: 5rem;
}

.footer-container {
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 968px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--mb-1-5);
}

.footer-logo-img {
  height: 50px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 50px !important;
  object-fit: contain;
}

.footer-description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  max-width: 300px;
}

.footer-social,
.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--card-color);
  color: var(--title-color);
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background-color: var(--first-color);
  color: var(--body-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer-links, .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-color-light);
  transition: 0.3s;
}

.footer-link:hover {
  color: var(--first-color);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color-light);
}

.footer-contact-list li a {
  color: var(--text-color-light);
  transition: 0.3s;
}

.footer-contact-list li a:hover {
  color: var(--first-color);
}

.footer-contact-list i {
  color: var(--first-color);
  font-size: 1.25rem;
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.footer-terms {
  display: flex;
  gap: 1.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer-terms a {
  color: var(--text-color-light);
  transition: 0.3s;
}

.footer-terms a:hover {
  color: var(--first-color);
}

/*==================== BACK TO TOP ====================*/
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--first-color);
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: var(--z-tooltip);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(var(--first-color-rgb), 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/*==================== BREADCRUMB ====================*/
.breadcrumb {
  padding: 1rem 0;
  padding-top: calc(var(--header-height) + 2rem);
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.breadcrumb a {
  color: var(--text-color-light);
  transition: 0.3s;
}

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

.breadcrumb-sep {
  margin: 0 0.5rem;
  font-size: 0.65rem;
  color: var(--border-color);
}

.breadcrumb-current {
  color: var(--first-color);
}

/*==================== PAGE HERO ====================*/
.page-hero {
  text-align: center;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(var(--first-color-rgb), 0.08) 0%, transparent 60%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
}

.page-hero-desc {
  color: var(--text-color);
  font-size: 1.1rem;
}

/* Service Hero */
.service-hero {
  position: relative;
}

.service-hero-icon {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  font-size: 8rem;
  color: rgba(var(--first-color-rgb), 0.05);
  z-index: 0;
}

/*==================== ABOUT FULL PAGE ====================*/
.about-full-container {
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media screen and (min-width: 968px) {
  .about-full-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.about-text-block {
  margin-bottom: var(--mb-1-5);
}

.about-text-block p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-stats-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box-v {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.stat-box-v .stat-number {
  font-size: var(--h1-font-size);
}

.stat-box-v p {
  color: var(--text-color-light);
  font-family: var(--title-font);
  font-size: var(--small-font-size);
}

.section-divider {
  padding: 0;
}

.section-divider hr {
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 0.5;
}

/*==================== TEAM SECTIONS ====================*/
.team-container {
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media screen and (min-width: 968px) {
  .team-container {
    grid-template-columns: 0.4fr 0.6fr;
  }
  .team-reverse {
    grid-template-columns: 0.6fr 0.4fr;
  }
}

.team-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--card-color), var(--container-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder i {
  font-size: 5rem;
  color: rgba(var(--first-color-rgb), 0.2);
}

.team-badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-family: var(--title-font);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  backdrop-filter: blur(10px);
}

.team-badge.oscar {
  background: rgba(var(--first-color-rgb), 0.2);
  color: var(--first-color);
  border: 1px solid rgba(var(--first-color-rgb), 0.4);
}

.team-badge.imdb {
  background: rgba(245, 197, 24, 0.2);
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.4);
}

.team-badge a {
  color: inherit;
}

.team-role {
  color: var(--first-color);
  font-family: var(--title-font);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1-5);
}

.team-bio {
  margin-bottom: var(--mb-2);
}

.team-bio p {
  color: var(--text-color);
  margin-bottom: var(--mb-1);
  line-height: 1.8;
}

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: var(--mb-2);
}

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--card-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.highlight-item:hover {
  border-color: rgba(var(--first-color-rgb), 0.3);
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--first-color);
  min-width: 30px;
  margin-top: 0.25rem;
}

.highlight-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--title-color);
}

.highlight-item p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.team-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color-light);
}

.team-location i {
  color: var(--first-color);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--mb-1-5);
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: 0.3s;
}

.skill-tag i {
  color: var(--first-color);
}

.skill-tag:hover {
  border-color: var(--first-color);
  color: var(--first-color);
}

/*==================== SERVICE DETAIL PAGES ====================*/
.service-detail-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media screen and (min-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1.5fr 0.5fr;
  }
}

.service-detail-main h2 {
  margin-bottom: var(--mb-1-5);
}

.service-detail-main > p {
  color: var(--text-color);
  margin-bottom: var(--mb-2-5);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: var(--mb-2);
}

.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 55px;
  height: calc(100% - 20px);
  width: 2px;
  background: linear-gradient(to bottom, var(--first-color), transparent);
}

.step-number {
  font-family: var(--title-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-black);
  color: var(--first-color);
  min-width: 50px;
  line-height: 1;
}

.step-content h3 {
  margin-bottom: var(--mb-0-5);
  font-size: var(--h3-font-size);
}

.step-content p {
  color: var(--text-color-light);
  line-height: 1.7;
}

/* Sidebar */
.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.sidebar-list li i {
  color: var(--first-color);
  font-size: 0.75rem;
}

.studio-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--title-font);
  font-weight: var(--font-medium);
}

.studio-list li:last-child {
  border-bottom: none;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  background: rgba(var(--first-color-rgb), 0.1);
  color: var(--first-color);
  font-size: var(--smaller-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-medium);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--card-color), var(--container-color));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.sidebar-cta h3 {
  margin-bottom: var(--mb-0-5);
}

.sidebar-cta p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1-5);
}

/* Capabilities Grid */
.capabilities-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--mb-2);
}

@media screen and (min-width: 600px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capability-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: 0.3s;
}

.capability-card:hover {
  border-color: rgba(var(--first-color-rgb), 0.3);
  transform: translateY(-5px);
}

.capability-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--first-color-rgb), 0.1);
  color: var(--first-color);
  font-size: 1.25rem;
  margin-bottom: var(--mb-1);
}

.capability-card h3 {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-0-5);
}

.capability-card p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*==================== PROJECTS / FILMOGRAPHY ====================*/
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--mb-3);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background: transparent;
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--first-color);
  color: var(--body-color);
  border-color: var(--first-color);
}

.project-category {
  margin-bottom: var(--mb-3);
}

.category-title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  padding-bottom: var(--mb-1);
  border-bottom: 1px solid var(--border-color);
}

.films-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .films-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/*==================== CONTACT PAGE ====================*/
.contact-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media screen and (min-width: 968px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form-wrapper h2 {
  margin-bottom: var(--mb-0-5);
}

.contact-form-desc {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
}

.mgf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--title-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px rgba(var(--first-color-rgb), 0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  align-self: flex-start;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--mb-1);
}

.contact-card-header i {
  color: var(--first-color);
  font-size: 1.25rem;
}

.contact-card-header h3 {
  font-size: var(--normal-font-size);
  margin-bottom: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.contact-details li i {
  color: var(--first-color);
  font-size: 0.875rem;
  min-width: 18px;
}

.contact-details li a {
  color: var(--text-color);
  transition: 0.3s;
}

.contact-details li a:hover {
  color: var(--first-color);
}

/*==================== ANIMATIONS ====================*/
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.active-reveal {
  opacity: 1;
  transform: translate(0, 0);
}

/*==================== RESPONSIVE ====================*/
@media screen and (max-width: 400px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: var(--normal-font-size);
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .films-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .service-hero-icon {
    display: none;
  }
  .team-container,
  .team-reverse {
    grid-template-columns: 1fr;
  }
}

/* WordPress specific */
.entry-content {
  color: var(--text-color);
  line-height: 1.8;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-1);
}

.entry-content p {
  margin-bottom: var(--mb-1);
}

.entry-content a {
  color: var(--first-color);
  transition: 0.3s;
}

.entry-content a:hover {
  text-decoration: underline;
}

.entry-content img {
  border-radius: 8px;
  margin: var(--mb-1-5) 0;
}

/* WordPress admin bar fix */
body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
