@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.cdnfonts.com/css/branding-2");
/* SASS VAR */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --black-light: #222222;
  --gold: #E42230;
  --gold-light: #8e050e;
  --gold-dark: #a07830;
  --off-white: #f5f0e8;
  --white: #ffffff;
  --grey: #bdbdbd;
  --grey-light: #cccccc;
  --red-akiz: #c0392b;
  --section-bg: #f9f6f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Branding", sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

.section-light {
  background-color: var(--off-white);
  color: #000000;
}

.btn {
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background-color: #E42230;
  border-color: #E42230;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: rgb(188.0282258065, 22.9717741935, 34.8830645161);
  border-color: rgb(188.0282258065, 22.9717741935, 34.8830645161);
}

.section-dark {
  background-color: var(--black-soft);
  color: var(--off-white);
}

.section-mid {
  background-color: var(--black-mid);
  color: var(--off-white);
}

.text-gold {
  color: #E42230;
}

.text-off-white {
  color: var(--off-white);
}

.bg-gold {
  background-color: #E42230;
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E42230;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Montserrat", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.section-title.dark {
  color: #000000;
}

.section-title.light {
  color: var(--off-white);
}

.gold-line {
  width: 50px;
  height: 2px;
  background: #E42230;
  margin: 20px 0;
}

.gold-line.center {
  margin: 20px auto;
}

/* ==================== NAVBAR ==================== */
.navbar-akiz {
  backdrop-filter: blur(10px);
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}

.navbar-akiz.scrolled {
  background-color: #000000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
}

.navbar-akiz .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-akiz .navbar-brand .logo-normal {
  display: inline-block;
}

.navbar-akiz .navbar-brand .logo-scrolled {
  display: none;
}

.navbar-akiz.scrolled .navbar-brand .logo-normal {
  display: none;
}

.navbar-akiz.scrolled .navbar-brand .logo-scrolled {
  display: inline-block;
}

.navbar-akiz .brand-logo {
  width: 40px;
  height: 40px;
}

.navbar-akiz .brand-text {
  font-family: "Montserrat", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 2px;
}

.navbar-akiz .brand-text span {
  color: #E42230;
}

.navbar-akiz .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light) !important;
  padding: 20px 16px !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-akiz .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #E42230;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-akiz .nav-link:hover,
.navbar-akiz .nav-link.before {
  color: var(--off-white) !important;
}

.navbar-akiz .nav-link:hover::before,
.navbar-akiz .nav-link.active::before {
  transform: scaleX(1);
}

.navbar-akiz .navbar-toggler {
  padding: 6px 10px;
}

.navbar-akiz .top-bar {
  background-color: var(--black-mid);
  padding: 7px 0;
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar-akiz .top-bar a {
  color: var(--grey);
}

.navbar-akiz .top-bar a:hover {
  color: #E42230;
}

.navbar-akiz .top-bar .top-bar-icon {
  color: #E42230;
  margin-right: 5px;
}

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

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(5, 25, 55, 0.5);
}

.hero-section .film-strip {
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 120px;
  background: repeating-linear-gradient(180deg, transparent 0px, transparent 40px, rgba(201, 168, 76, 0.05) 40px, rgba(201, 168, 76, 0.05) 50px);
  opacity: 0.4;
}

.hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E42230;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Montserrat", serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title .accent {
  color: #E42230;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #E42230;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: #E42230;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
/* ==================== ABOUT SECTION ==================== */
.about-section {
  background-color: var(--off-white);
  color: #000000;
  padding: 100px 0;
}

.about-section .about-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.about-section .about-img-wrapper {
  position: relative;
}

.about-section .about-img-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: #E42230;
  border-radius: 24px;
  z-index: 0;
}

.about-section .about-img-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-section .about-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  z-index: 2;
  background: #FFFFFF;
  color: #E42230;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  font-family: "Montserrat", serif;
}

.about-section .about-badge .badge-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-section .about-badge .badge-label {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==================== PRODUCTIONS SECTION ==================== */
.productions-section {
  background-color: var(--white);
  padding: 100px 0;
}

.production-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.production-showcase .prod-item, .videolist .prod-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  grid-column: span 2;
}

.production-showcase .prod-item:nth-child(1),
.production-showcase .prod-item:nth-child(2) {
  grid-column: span 3;
}

.production-showcase .prod-item img,
.videolist .prod-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}

.production-showcase .prod-item:nth-child(1) img,
.production-showcase .prod-item:nth-child(2) img,
.videolist .prod-item:nth-child(1) img,
.videolist .prod-item:nth-child(2) img {
  height: 350px;
}

.production-showcase .prod-item:hover img,
.videolist .prod-item:hover img {
  transform: scale(1.05);
}

.production-showcase .prod-item .play-btn,
.videolist .prod-item .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.production-showcase .prod-item:hover .play-btn,
.videolist .prod-item:hover .play-btn {
  opacity: 1;
}

.production-showcase .prod-item .play-btn .play-circle,
.videolist .prod-item .play-btn .play-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.production-showcase .prod-item .prod-label,
.videolist .prod-item .prod-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  background-color: var(--section-bg);
  color: #000000;
  padding: 100px 0;
}

.services-section .service-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.services-section .service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.services-section .service-icon {
  width: 70px;
  height: 70px;
  background: rgba(228, 34, 48, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #E42230;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon {
  background: #E42230;
  color: #FFFFFF;
  transform: translateY(-5px);
}

.services-section .service-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 14px;
}

.services-section .service-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
  background-color: var(--off-white);
  color: #000000;
  padding: 100px 0;
}

.event-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.event-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.event-card .event-img {
  position: relative;
  overflow: hidden;
}

.event-card .event-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.06);
}

.event-card .event-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #E42230;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
}

.event-card .event-body {
  padding: 24px;
}

.event-card .event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.event-card .event-meta span {
  font-size: 0.72rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-card .event-meta span i {
  color: #E42230;
}

.event-card .event-title {
  font-family: "Montserrat", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.event-card .event-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.7;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 100px 0;
}

.stats-section .stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stats-section .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.stats-section .col-md-3:last-child .stat-item::after {
  display: none;
}

.stats-section .stat-num {
  font-family: "Montserrat", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #E42230;
  line-height: 1;
  display: block;
}

.stats-section .stat-icon {
  font-size: 1.5rem;
  color: #E42230;
  margin-bottom: 10px;
}

.stats-section .stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  background: var(--section-bg);
  padding: 90px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-section .newsletter-title {
  font-family: "Montserrat", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.2;
}

.newsletter-section .newsletter-sub {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  color: #000000;
  padding: 14px 20px;
  font-size: 0.88rem;
  outline: none;
  border-radius: 2rem;
  font-family: "Montserrat", sans-serif;
}

.newsletter-form input::placeholder {
  color: var(--grey);
}

.newsletter-form input:focus {
  border-color: #E42230;
  background: rgba(201, 168, 76, 0.05);
}

.newsletter-form button {
  white-space: nowrap;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
  background-color: var(--white);
  padding: 100px 0;
}

.blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 380px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.6);
}

.blog-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.blog-card .blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}

.blog-card .blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E42230;
  margin-bottom: 10px;
}

.blog-card .blog-title {
  font-family: "Montserrat", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-card .blog-read {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-read {
  color: #E42230;
}

/* ==================== PARTNERS ==================== */
.partners-section {
  background: var(--off-white);
  padding: 60px 0;
  border-top: 1px solid #e8e0d0;
}

.partners-section .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 15px;
  border: 1px solid rgba(228, 34, 48, 0.15);
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
  border-radius: 5px;
  background: rgba(228, 34, 48, 0.05);
}

.partners-section .partner-item:hover {
  border-color: var(--gold);
  background: rgba(228, 34, 48, 0.15);
  transform: translateY(-3px);
}

.partners-section .marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-section .marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 30px;
  animation: marquee-scroll 30s linear infinite;
}

.partners-section .partner-marquee-link {
  display: block;
  flex-shrink: 0;
  min-width: 180px;
  text-decoration: none;
}

.partners-section .partner-marquee-link .partner-item {
  width: 100%;
}

.partners-section .marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 30px));
  }
}
.partners-section .partner-text {
  font-family: "Montserrat", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 2px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #000000;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer .footer-top {
  padding: 70px 0 50px;
}

.footer .footer-brand .brand-text {
  font-family: "Montserrat", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 2px;
}

.footer .footer-brand .brand-text span {
  color: #E42230;
}

.footer .footer-tagline {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 8px;
  letter-spacing: 1px;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  border-color: #E42230;
  color: #E42230;
  background: rgba(201, 168, 76, 0.1);
}

.footer .footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E42230;
  margin-bottom: 22px;
}

.footer .footer-links {
  list-style: none;
}

.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links a {
  color: var(--grey);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer .footer-links a::before {
  content: "—";
  color: #E42230;
  font-size: 0.6rem;
}

.footer .footer-links a:hover {
  color: var(--off-white);
  padding-left: 5px;
}

.footer .footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer .footer-contact-item i {
  color: #E42230;
  margin-top: 3px;
  min-width: 14px;
}

.footer .footer-contact-item span {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.6;
}

.footer .footer-contact-item a {
  color: var(--grey);
}

.footer .footer-contact-item a:hover {
  color: #E42230;
}

.footer .footer-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.footer .footer-photos img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer .footer-photos img:hover {
  filter: brightness(1);
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  font-size: 0.75rem;
  color: var(--grey);
}

.footer .footer-bottom a {
  color: #E42230;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 2px solid #E42230;
}
.page-hero > div.container {
  position: relative;
  z-index: 10;
}

.page-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #000000 10%, rgba(192, 57, 43, 0.15) 100%);
  height: 100%;
  width: 100%;
}

.page-hero .breadcrumb-akiz {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page-hero .breadcrumb-akiz a {
  color: var(--grey);
}

.page-hero .breadcrumb-akiz a:hover {
  color: #E42230;
}

.page-hero .breadcrumb-akiz .sep {
  color: #E42230;
}

.page-hero .breadcrumb-akiz .current {
  color: var(--off-white);
}

/* ==================== CONTACT FORM ==================== */
.contact-section {
  background: var(--off-white);
  color: #000000;
  padding: 100px 0;
}

.form-control-akiz {
  background: #FFFFFF;
  border: 1px solid #ddd;
  border-bottom: 2px solid transparent;
  border-radius: 2rem;
  padding: 14px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: #000000;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
  appearance: none;
}

.form-control-akiz:focus {
  border-bottom-color: #E42230;
  box-shadow: none;
  background: #fafafa;
}

.form-control-akiz::placeholder {
  color: #aaa;
}

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

.form-label-akiz {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 8px;
  display: block;
}

.contact-info-card {
  background: #000000;
  padding: 40px 35px;
  height: 100%;
}

.contact-info-card .info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-card .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-card .info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E42230;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card .info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E42230;
  margin-bottom: 5px;
}

.contact-info-card .info-value {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.6;
}

.contact-info-card .info-value a {
  color: var(--off-white);
}

.contact-info-card .info-value a:hover {
  color: #E42230;
}

/* ==================== PRODUCTIONS PAGE ==================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--grey);
  padding: 8px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E42230;
  border-color: #E42230;
  color: #000000;
}

.prod-grid-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.prod-grid-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: all 0.5s ease;
}

.prod-grid-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.prod-grid-card .prod-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.prod-grid-card .prod-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E42230;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prod-grid-card .prod-name {
  font-family: "Montserrat", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

.prod-grid-card .prod-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.prod-grid-card:hover .prod-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ==================== ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .navbar-akiz .nav-link {
    padding: 12px 16px !important;
  }
  .navbar-akiz .nav-link::after {
    display: none;
  }
  .navbar-akiz .navbar-collapse {
    background: var(--black-soft);
    padding: 16px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
  }
  .production-showcase {
    grid-template-columns: 1fr;
  }
  .production-showcase .prod-item {
    grid-column: span 1 !important;
  }
  .production-showcase .prod-item img {
    height: 280px !important;
  }
  .stats-section .stat-item::after {
    display: none;
  }
  .about-section .about-img-wrapper::before {
    display: none;
  }
  .about-section .about-badge {
    left: 0;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-right: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom: none;
  }
  .blog-card {
    height: 300px;
  }
  .page-hero {
    padding: 130px 0 60px;
  }
}
/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #E42230;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 0.9rem;
  border-radius: 50%;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}