/* ===================================
   IFFC - Custom Styles
   =================================== */

/* CSS Variables */
:root {
  --iffc-green: #c9a961;
  --iffc-emerald-gradient: linear-gradient(135deg, #c9a961 0%, #a68a4f 100%);
  --iffc-black: #0a1514;
  --iffc-gray: #1a2624;
  --iffc-light-gray: #2a3634;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

.text-gradient {
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

body {
  background-color: var(--iffc-black);
  color: white;
  font-family: "Cinzel", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 700;
}

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

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

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(10, 21, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.5rem;
  font-family: "Cinzel", serif;
  letter-spacing: -0.05em;
  transition: var(--transition-fast);
}

.logo:hover {
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #d1d5db;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--iffc-emerald-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 38, 36, 0.98);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 169, 97, 0.2);
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Dropdown */
.dropdown.mobile-active > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.dropdown.mobile-active > .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #d1d5db;
  transition: var(--transition-fast);
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  background: rgba(0, 166, 118, 0.1);
  color: var(--iffc-green);
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
}

.btn-primary:hover {
  background: #00c98d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.4);
}

.btn-outline {
  border: 2px solid var(--iffc-green);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 166, 118, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--iffc-black);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 166, 118, 0.1) 0%,
    rgba(5, 5, 5, 0.9) 100%
  );
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.3;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.3),
    rgba(5, 5, 5, 0.7)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 3rem);
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #9ca3af;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background: rgba(0, 166, 118, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Cinzel", serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--iffc-green);
}

.event-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.event-card:hover .event-image {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.event-content {
  padding: 2rem;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.98), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.event-date {
  font-size: 0.875rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.event-location {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

/* Participate Grid */
.participate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.participate-card {
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.participate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--iffc-emerald-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.participate-card:hover::before {
  transform: scaleX(1);
}

.participate-card:hover {
  background: rgba(0, 166, 118, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
}

.participate-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.participate-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.participate-description {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 166, 118, 0.8), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Testimonials */
.testimonials-slider {
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
}

.testimonial {
  text-align: center;
  padding: 3rem;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.testimonial-author {
  font-size: 1rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sponsors */
.sponsors-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.sponsors-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.sponsors-track:hover {
  animation-play-state: paused;
}

.sponsor-logo {
  flex: 0 0 auto;
  width: 200px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sponsor-logo img {
  max-width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

.sponsor-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

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

/* Responsive Marquee */
@media (max-width: 768px) {
  .sponsor-logo {
    width: 150px;
    padding: 0 1.5rem;
  }

  .sponsor-logo img {
    max-height: 80px;
  }
}

/* ===================================
   Delegations Marquee (Events Page)
   =================================== */
.delegations-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.delegations-track {
  display: flex;
  width: max-content;
  animation: delegationsScroll 50s linear infinite;
}

.delegations-track:hover {
  animation-play-state: paused;
}

.delegation-card {
  flex: 0 0 auto;
  width: 180px;
  padding: 2rem 1.5rem;
  margin: 0 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.delegation-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.delegation-flag {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.delegation-card:hover .delegation-flag {
  transform: scale(1.2);
}

.delegation-name {
  color: white;
  font-size: 1.1rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  margin: 0;
  transition: all 0.3s ease;
}

.delegation-card:hover .delegation-name {
  color: var(--iffc-green);
}

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

/* Responsive Delegations Marquee */
@media (max-width: 768px) {
  .delegation-card {
    width: 140px;
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  .delegation-flag {
    font-size: 3rem;
  }

  .delegation-name {
    font-size: 0.95rem;
  }
}

/* Footer */
.footer {
  background: var(--iffc-gray);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #6b7280;
  font-size: 0.875rem;
}

/* Footer Social Icons */
.footer-social {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #00a676; /* Fallback */
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.1) 0%,
    rgba(10, 21, 20, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 4;
  column-gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.masonry-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.masonry-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 166, 118, 0.9), transparent);
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.masonry-item:hover .gallery-overlay {
  opacity: 1;
}

.masonry-item .gallery-overlay p {
  color: white;
  font-weight: 600;
  margin: 0;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  width: 60px !important;
  height: 60px !important;
  background: var(--iffc-emerald-gradient) !important;
  border-radius: 50% !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(0, 166, 118, 0.3) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--iffc-emerald-gradient) !important;
  border-color: transparent !important;
  transform: scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(0, 166, 118, 0.5) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  background: var(--iffc-emerald-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: bold !important;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--iffc-black) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem !important;
  font-weight: bold !important;
  color: white !important;
}

.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.runwaySwiper .swiper-button-next,
.runwaySwiper .swiper-button-prev,
.facesMomentsSwiper .swiper-button-next,
.facesMomentsSwiper .swiper-button-prev,
.eventsSwiper .swiper-button-next,
.eventsSwiper .swiper-button-prev {
  background: var(--iffc-emerald-gradient) !important;
}

/* Gallery Swiper specific styles */
.gallerySwiper {
  padding: 2rem 0 4rem;
  position: relative;
}

.gallerySwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.gallerySwiper .swiper-pagination {
  bottom: 0 !important;
}

.gallerySwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.gallerySwiper .swiper-pagination-bullet-active {
  background: var(--iffc-emerald-gradient);
  width: 30px;
  border-radius: 6px;
}

.gallery-view-more {
  text-align: center;
  margin-top: 2rem;
}

.gallery-view-more .btn {
  min-width: 200px;
}

/* Events Swiper specific styles */
.eventsSwiper {
  padding-bottom: 60px !important;
  position: relative;
}

.eventsSwiper .swiper-pagination {
  bottom: 10px !important;
}

.eventsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.eventsSwiper .swiper-pagination-bullet-active {
  background: var(--iffc-emerald-gradient);
  width: 30px;
  border-radius: 6px;
}

/* Reviews Swiper specific styles */
.reviewsSwiper {
  padding-bottom: 60px !important;
  position: relative;
}

.reviewsSwiper .swiper-pagination {
  bottom: 0 !important;
}

.reviewsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.reviewsSwiper .swiper-pagination-bullet-active {
  background: var(--iffc-emerald-gradient);
  width: 30px;
  border-radius: 6px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.back-to-top:hover {
  background: #00c98d;
  transform: translateY(-5px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(10, 21, 20, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    overflow-y: auto;
    gap: 1rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0 !important;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  body.menu-open {
    overflow: hidden;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: rgba(0, 166, 118, 0.05);
    border: none;
    border-left: 2px solid #00a676;
    border-image: var(--iffc-emerald-gradient) 1;
    padding: 0;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
  }

  .dropdown.mobile-active > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.5rem 0 0.5rem 1rem;
  }

  .dropdown > a::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }

  .dropdown.mobile-active > a::after {
    transform: rotate(180deg);
  }
}

/* ===================================
   Designers Section
   =================================== */
.designers-section {
  padding: 6rem 0;
  background-color: #0a1514;
}

.designers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.designer-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.designer-card:hover {
  transform: translateY(-10px);
}

.designer-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.designer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.designer-card:hover .designer-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.designer-name {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  display: inline-block;
}

.designer-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--iffc-emerald-gradient);
  transition: width 0.3s ease;
}

.designer-card:hover .designer-name::after {
  width: 100%;
}

/* ===================================
   Participate Section (Hover Accordion)
   =================================== */
.participate-section {
  padding: 8rem 0;
  background-color: #0a1514;
  overflow: hidden;
}

.participate-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.participate-header .section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  margin: 0;
  text-align: left;
}

.participate-header .section-subtitle {
  max-width: 400px;
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
  color: #888;
}

.accordion-container {
  display: flex;
  height: 600px;
  width: 100%;
  gap: 0;
}

.accordion-item {
  position: relative;
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
  border-right: none;
}

.accordion-item:hover {
  flex: 3;
}

.accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.9)
  );
  transition: background 0.5s ease;
}

.accordion-item:hover .accordion-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.accordion-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.accordion-number {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.accordion-content h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  transform-origin: left;
  transition: all 0.5s ease;
}

.accordion-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.accordion-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.accordion-btn:hover {
  background: var(--iffc-emerald-gradient);
  border-color: transparent;
}

/* Hover States */
.accordion-item:hover .accordion-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accordion-item:hover .accordion-content p {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 2rem;
}

.accordion-item:hover .accordion-btn {
  opacity: 1;
  transform: translateY(0);
}

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 1.5rem;
}

.fashion-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  grid-column: span 4;
}

.fashion-card.large {
  grid-column: span 6;
  grid-row: span 2;
}

.fashion-card.tall {
  grid-column: span 3;
  grid-row: span 2;
}

.fashion-card.wide {
  grid-column: span 6;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .fashion-card,
  .fashion-card.large,
  .fashion-card.tall,
  .fashion-card.wide {
    grid-column: span 6;
    grid-row: span 1;
  }
  .fashion-card.large {
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .fashion-grid {
    display: flex;
    flex-direction: column;
  }
  .fashion-card {
    height: 300px;
  }
  .participate-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fashion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  z-index: 1;
  transition: background 0.3s ease;
}

.fashion-card:hover .card-bg {
  transform: scale(1.1);
}

.fashion-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 166, 118, 0.8),
    rgba(0, 0, 0, 0.2)
  );
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.card-content h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.fashion-card:hover .card-content p,
.fashion-card:hover .link-arrow {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .accordion-container {
    flex-direction: column;
    height: auto;
  }

  .accordion-item {
    height: 300px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .accordion-item:hover {
    flex: none;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-grid,
  .events-grid,
  .participate-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    column-count: 1;
  }
}

@media (min-width: 1024px) {
  .swiper-button-next {
    right: -30px !important;
  }

  .swiper-button-prev {
    left: -30px !important;
  }
}

@media (max-width: 768px) {
  .masonry-item.hidden-mobile {
    display: none;
  }

  .floating-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-image {
    width: 80px;
    height: 80px;
  }
}

/* ===================================
   Video Reviews Section
   =================================== */
.video-review-card {
  width: 100%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 1rem;
}

.video-review-card:hover {
  border-color: var(--iffc-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.video-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--iffc-emerald-gradient);
  border-color: transparent;
}

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

.review-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: white;
}

.review-info p {
  color: var(--iffc-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   Minimal Footer
   =================================== */
.footer-minimal {
  padding: 4rem 0;
  background: linear-gradient(to top, #0a1514, rgba(10, 21, 20, 0.8));
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  margin-top: 4rem;
}

.social-dock {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: max-content;
  max-width: 90%; /* Ensure it doesn't overflow on small screens */
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  flex-wrap: wrap; /* Allow wrapping on very small screens */
}

.social-dock:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: transparent;
}

.social-link:hover {
  background: var(--iffc-emerald-gradient);
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 166, 118, 0.4);
}

.copyright-text {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .footer-minimal {
    padding: 3rem 0;
    margin-top: 2rem;
  }

  .social-dock {
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-radius: 50px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===================================
   Archive Gallery
   =================================== */
.archive-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 600px;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.archive-card:hover img {
  transform: scale(1.1);
}

.archive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding-bottom: 3rem;
}

.archive-card:hover .archive-overlay {
  opacity: 1;
}

.archive-year {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.archive-content {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.15s;
}

.archive-card:hover .archive-content {
  transform: translateY(0);
  opacity: 1;
}

.archive-btn {
  padding: 1rem 2.5rem;
  border: 1px solid white;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.archive-btn:hover {
  background: var(--iffc-emerald-gradient);
  border-color: transparent;
  color: black;
}

.archive-card:hover .archive-year,
.archive-card:hover .archive-btn {
  transform: translateY(0);
  opacity: 1;
}

/* Archive Swiper Specifics */
.archiveSwiper {
  padding-bottom: 50px !important;
}

.archiveSwiper .swiper-pagination {
  bottom: 0 !important;
}

.archiveSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.archiveSwiper .swiper-pagination-bullet-active {
  background: var(--iffc-emerald-gradient);
  width: 30px;
  border-radius: 6px;
}

/* ===================================
   History Timeline
   =================================== */
.timeline-section {
  position: relative;
  padding: 6rem 0;
  background-color: #0a1514;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--iffc-emerald-gradient);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #0a1514;
  border: 2px solid #c9a961;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  background-color: #c9a961;
  transform: scale(1.2);
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid rgba(255, 255, 255, 0.05);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.05);
}

.timeline-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid rgba(255, 255, 255, 0.05);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(10, 21, 20, 0.8);
  border-color: #c9a961;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.timeline-year {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--iffc-emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-title {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-location {
  color: #9ca3af;
  font-size: 0.9rem;
  font-style: italic;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::before {
    left: 60px;
    border: medium solid rgba(255, 255, 255, 0.05);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
  }

  .timeline-left::after,
  .timeline-right::after {
    left: 21px;
  }

  .timeline-right {
    left: 0%;
  }
}

/* ===================================
   Bento Grid Section
   =================================== */
.bento-section {
  padding: 6rem 0;
  background-color: #0a1514;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(20%);
}

.bento-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

/* Tablet */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto-fill, 250px);
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .bento-item {
    height: 300px;
  }
}

/* Active Nav Link */
.nav-link.active {
  color: white;
}

.nav-link.active::after {
  width: 100%;
}

/* Footer Responsive Improvements */
@media (max-width: 480px) {
  .social-dock {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    width: 95%;
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05); /* Make them slightly visible */
  }

  .footer-minimal {
    padding: 2rem 0;
  }
}

/* ===================================
   Global Impact Section
   =================================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  padding: 0;
  overflow: hidden;
  background: #0a1514;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.impact-card:hover {
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.impact-image {
  height: 250px;
  overflow: hidden;
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.impact-card:hover .impact-image img {
  transform: scale(1.1);
}

.impact-content {
  padding: 2rem;
  text-align: center;
}

.impact-content h3 {
  margin-bottom: 1rem;
  color: white;
}

.impact-content p {
  color: #9ca3af;
  font-family: "Inter", sans-serif;
}

/* ===================================
   Team Section
   =================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    gap: 1.5rem;
  }
}

.team-card {
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 600px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 4px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  object-position: top;
}

.team-card:hover .team-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

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

.team-info h3 {
  margin-bottom: 0.5rem;
  color: var(--iffc-green);
  font-size: 1.5rem;
}

.team-role {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
  display: block;
}

.team-bio {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   Vision Parallax Section
   =================================== */
.vision-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  margin: 4rem 0;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 21, 20, 0.85); /* Dark overlay */
}

.vision-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  margin-bottom: 2rem;
  display: inline-block;
}

.vision-quote {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.vision-author {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  position: relative;
  display: inline-block;
}

.vision-author::before,
.vision-author::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--iffc-green);
  vertical-align: middle;
  margin: 0 10px;
}

/* ===================================
   EVENTS PAGE SPECIFIC STYLES
   =================================== */

/* Page Hero Variant */
.page-hero {
  min-height: 70vh;
  padding-top: 100px;
}

/* Event Badge */
.event-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iffc-green);
}

/* Event Stats Cards */
.event-stat-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.event-stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
}

.event-stat-number {
  font-size: 2rem;
  color: var(--iffc-green);
  font-weight: 700;
  font-family: "Cinzel", serif;
}

.event-stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Location Highlight Cards */
.location-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--iffc-green);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  background: rgba(201, 169, 97, 0.05);
  transform: translateX(5px);
}

.location-card h4 {
  color: var(--iffc-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.location-card p {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Announcement Cards */
.announcement-card {
  padding: 2rem;
  background: rgba(201, 169, 97, 0.05);
  border-left: 4px solid var(--iffc-green);
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.announcement-card:hover {
  background: rgba(201, 169, 97, 0.08);
  transform: translateX(5px);
}

.announcement-card.secondary {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: rgba(201, 169, 97, 0.5);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.announcement-badge {
  background: var(--iffc-green);
  color: var(--iffc-black);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Press Card */
.press-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.press-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.press-card-header {
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.2),
    rgba(10, 21, 20, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-card-header i {
  font-size: 4rem;
  color: var(--iffc-green);
}

.press-card-body {
  padding: 2rem;
}

.press-card-body h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
}

.press-card-body p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.press-link {
  color: var(--iffc-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.press-link:hover {
  padding-left: 5px;
}

/* Country Flag Card */
.country-card {
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
}

.country-flag {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.country-name {
  color: white;
  font-size: 1.1rem;
}

/* Designer Archive List */
.designer-archive-list {
  max-width: 1000px;
  margin: 0 auto;
  columns: 3;
  column-gap: 2rem;
}

.designer-archive-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--iffc-green);
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
}

.designer-archive-item:hover {
  background: rgba(201, 169, 97, 0.05);
  transform: translateX(5px);
}

.designer-archive-item h5 {
  color: var(--iffc-green);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.designer-archive-item p {
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Registration CTA Box */
.registration-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.15),
    rgba(10, 21, 20, 0.8)
  );
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.registration-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.registration-cta p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.registration-cta .btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Objective Card */
.objective-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.objective-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.objective-icon {
  font-size: 2.5rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
}

.objective-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
}

.objective-card p {
  color: #9ca3af;
  line-height: 1.7;
}

/* Mobile Responsive for Events Page */
@media (max-width: 768px) {
  .designer-archive-list {
    columns: 1;
  }

  .announcement-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .registration-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .registration-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===================================
   SPONSORS PAGE STYLES
   =================================== */

/* Sponsor Benefit Cards */
.sponsor-benefit-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sponsor-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--iffc-emerald-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.sponsor-benefit-card:hover::before {
  transform: scaleX(1);
}

.sponsor-benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.sponsor-benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotateY(360deg);
}

.sponsor-benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-family: "Cinzel", serif;
}

.sponsor-benefit-card p {
  color: #9ca3af;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

/* Sponsorship Tier Cards */
.tier-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--iffc-green),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tier-card:hover::before {
  opacity: 1;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Tier Badge */
.tier-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Tier Header */
.tier-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.tier-platinum .tier-icon {
  color: #e5e4e2;
  filter: drop-shadow(0 0 20px rgba(229, 228, 226, 0.5));
}

.tier-gold .tier-icon {
  color: #ffd700;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.tier-silver .tier-icon {
  color: #c0c0c0;
  filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.5));
}

.tier-associate .tier-icon {
  color: var(--iffc-green);
  filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.5));
}

.tier-card:hover .tier-icon {
  transform: scale(1.1) rotateY(360deg);
}

.tier-name {
  font-size: 2.5rem;
  font-family: "Cinzel", serif;
  color: white;
  margin-bottom: 0.5rem;
}

.tier-tagline {
  color: #9ca3af;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tier Benefits */
.tier-benefits {
  flex: 1;
  margin-bottom: 2rem;
}

.tier-benefits h4 {
  font-size: 1.1rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tier-benefits ul {
  list-style: none;
  padding: 0;
}

.tier-benefits li {
  padding: 0.75rem 0;
  color: #d1d5db;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-benefits li:last-child {
  border-bottom: none;
}

.tier-benefits li i {
  color: var(--iffc-green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Tier CTA */
.tier-cta {
  margin-top: auto;
}

/* Sponsor Testimonial Card */
.sponsor-testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.sponsor-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.testimonial-logo img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.sponsor-testimonial-card:hover .testimonial-logo img {
  filter: grayscale(0%) brightness(1);
}

.testimonial-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}

.testimonial-quote i {
  font-size: 2rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.testimonial-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  font-style: italic;
  font-family: "Inter", sans-serif;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--iffc-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sponsor CTA Box */
.sponsor-cta-box {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.sponsor-cta-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sponsor Testimonials Swiper */
.sponsorTestimonialsSwiper {
  padding: 2rem 0 4rem;
}

.sponsorTestimonialsSwiper .swiper-pagination {
  bottom: 0 !important;
}

.sponsorTestimonialsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.sponsorTestimonialsSwiper .swiper-pagination-bullet-active {
  background: var(--iffc-emerald-gradient);
  width: 30px;
  border-radius: 6px;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--iffc-green);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Mobile Responsive for Sponsors Page */
@media (max-width: 768px) {
  .tier-card {
    padding: 2rem;
  }

  .tier-name {
    font-size: 2rem;
  }

  .sponsor-testimonial-card {
    padding: 2rem;
    min-height: auto;
  }

  .sponsor-cta-box {
    padding: 2rem;
  }
}

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

/* Contact Quick Cards */
.contact-quick-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.contact-quick-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-quick-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-quick-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.contact-quick-card p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.contact-link {
  color: var(--iffc-green);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link:hover {
  gap: 1rem;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--iffc-green);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Contact Info Box */
.contact-info-box {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.contact-info-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-family: "Cinzel", serif;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--iffc-green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.info-item p {
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Items */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--iffc-green);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h4 {
  font-size: 1.1rem;
  color: white;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.faq-question i {
  color: var(--iffc-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0;
}

/* ===================================
   TICKETS PAGE STYLES
   =================================== */

/* Event Selector Buttons */
.event-selector-btn {
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.event-selector-btn i {
  font-size: 1.5rem;
  color: var(--iffc-green);
}

.event-selector-btn span {
  font-size: 0.85rem;
  color: #9ca3af;
}

.event-selector-btn:hover,
.event-selector-btn.active {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Early Bird Banner */
.early-bird-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.15),
    rgba(10, 21, 20, 0.8)
  );
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  flex-wrap: wrap;
}

.early-bird-icon {
  font-size: 3rem;
  color: var(--iffc-green);
}

.early-bird-banner h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.early-bird-banner p {
  color: #9ca3af;
  margin: 0;
}

.countdown-timer {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-width: 70px;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--iffc-green);
  font-family: "Cinzel", serif;
}

.timer-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Ticket Grid */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ticket-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ticket-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.ticket-featured {
  border-color: var(--iffc-green);
  background: rgba(201, 169, 97, 0.05);
}

.ticket-wide {
  grid-column: span 2;
}

.ticket-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  margin-bottom: 1rem;
}

.ticket-header h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.ticket-description {
  color: #9ca3af;
  font-size: 0.95rem;
}

.ticket-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--iffc-green);
  font-family: "Cinzel", serif;
  display: block;
}

.price-original {
  font-size: 1.2rem;
  color: #9ca3af;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 0.5rem;
}

.price-label {
  font-size: 0.9rem;
  color: #9ca3af;
  display: block;
  margin-top: 0.5rem;
}

.ticket-features {
  flex: 1;
  margin-bottom: 2rem;
}

.ticket-features ul {
  list-style: none;
  padding: 0;
}

.ticket-features li {
  padding: 0.75rem 0;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-features li i {
  color: var(--iffc-green);
  flex-shrink: 0;
}

.ticket-btn {
  width: 100%;
  padding: 1.25rem;
  margin-top: auto;
}

/* Seating Map */
.seating-map-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
}

.seating-stage {
  background: var(--iffc-emerald-gradient);
  color: var(--iffc-black);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.seating-stage i {
  font-size: 2rem;
}

.seating-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seating-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 8px;
}

.section-label {
  text-align: center;
  color: var(--iffc-green);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.seats,
.seat-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.seats-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.seat {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.seat.available {
  background: rgba(201, 169, 97, 0.3);
  border: 1px solid var(--iffc-green);
}

.seat.available:hover {
  background: var(--iffc-green);
  transform: scale(1.1);
}

.seat.sold {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.seat.selected {
  background: var(--iffc-emerald-gradient);
  border: 1px solid var(--iffc-green);
}

.tables {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table.available {
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--iffc-green);
}

.table.available:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: scale(1.05);
}

.table.sold {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.5;
  cursor: not-allowed;
}

.table i {
  font-size: 2rem;
  color: var(--iffc-green);
}

.table span {
  font-size: 0.85rem;
  color: #9ca3af;
}

.seating-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* FAQ Cards */
.faq-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
}

.faq-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
}

.faq-card-icon {
  font-size: 2.5rem;
  color: var(--iffc-green);
  margin-bottom: 1rem;
}

.faq-card h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
}

.faq-card p {
  color: #9ca3af;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

/* Payment Security Box */
.payment-security-box {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.security-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.security-badge i {
  font-size: 2.5rem;
  color: var(--iffc-green);
}

.security-badge span {
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .early-bird-banner {
    flex-direction: column;
    text-align: center;
  }

  .countdown-timer {
    margin-left: 0;
  }

  .ticket-wide {
    grid-column: span 1;
  }

  .ticket-wide > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .seating-map-container {
    padding: 1.5rem;
  }

  .seat {
    width: 20px;
    height: 20px;
  }

  .security-badges {
    gap: 1rem;
  }
}

/* ===================================
   TICKET PURCHASE MODAL - Premium UI
   =================================== */

/* Modal Container */
.ticket-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ticket-modal.active {
  display: flex;
}

.ticket-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.ticket-modal-content {
  position: relative;
  background: linear-gradient(135deg, #0a1a17 0%, #0d1f1c 100%);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  padding: 3.5rem 3rem;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.ticket-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ticket-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
  border-color: var(--iffc-green);
}

.ticket-modal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ticket-modal-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticket-modal-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}

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

/* Step Header */
.step-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #c9a961, #b89550);
  color: #0a1514;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: "Cinzel", serif;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.step-text h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Ticket Options List */
.ticket-options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ticket-option-item {
  display: block;
  cursor: pointer;
}

.ticket-option-item input[type="radio"] {
  display: none;
}

.ticket-option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ticket-option-item:hover .ticket-option-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 97, 0.3);
}

.ticket-option-item input:checked + .ticket-option-card {
  border-color: #c9a961;
  background: rgba(201, 169, 97, 0.08);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
}

.ticket-option-info h4 {
  font-size: 1.1rem;
  color: white;
  margin: 0 0 0.25rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.ticket-option-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.ticket-option-price {
  font-size: 1.5rem;
  color: #c9a961;
  font-weight: 700;
  font-family: "Cinzel", serif;
  white-space: nowrap;
  margin-left: 1.5rem;
}

/* Quantity Section */
.ticket-quantity-section {
  margin-bottom: 2rem;
}

.quantity-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.quantity-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.quantity-select:hover,
.quantity-select:focus {
  border-color: rgba(201, 169, 97, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
  outline: none;
}

/* Modal Form Elements */
.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.modal-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal-input,
.modal-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-input:hover,
.modal-textarea:hover {
  border-color: rgba(201, 169, 97, 0.3);
  background-color: rgba(255, 255, 255, 0.04);
}

.modal-input:focus,
.modal-textarea:focus {
  outline: none;
  border-color: #c9a961;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.modal-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox Group */
.modal-checkbox-group {
  margin-bottom: 1.5rem;
}

.modal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.modal-checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #c9a961;
}

.modal-checkbox-label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-link {
  color: #c9a961;
  transition: all 0.3s ease;
}

.modal-link:hover {
  text-decoration: underline;
  color: #d4b670;
}

/* Modal Buttons */
.modal-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-btn-primary {
  background: linear-gradient(135deg, #c9a961, #b89550);
  color: #0a1514;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.modal-btn-primary:hover {
  background: linear-gradient(135deg, #d4b670, #c9a961);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
  transform: translateY(-2px);
}

.modal-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 97, 0.5);
}

.modal-btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* Order Summary Box */
.order-summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.summary-title {
  color: white;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-family: "Inter", sans-serif;
}

.summary-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.summary-value {
  color: white;
  font-weight: 600;
}

.summary-total {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  font-size: 1.15rem;
}

.summary-total .summary-label {
  color: white;
  font-weight: 700;
}

.summary-total .summary-value {
  color: #c9a961;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
}

/* Security Notice */
.security-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 169, 97, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.security-notice i {
  color: #c9a961;
  font-size: 1.2rem;
}

.security-notice span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
}

/* Success Screen */
.success-screen {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.success-screen.active {
  display: block;
}

.success-icon-large {
  font-size: 6rem;
  color: #c9a961;
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.success-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

.success-screen .modal-btn {
  margin-top: 2rem;
  min-width: 250px;
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
  .ticket-modal {
    padding: 0.5rem;
  }

  .ticket-modal-content {
    padding: 2.5rem 1.75rem;
    max-height: 98vh;
    border-radius: 16px;
  }

  .ticket-modal-header h2 {
    font-size: 2rem;
  }

  .step-header {
    gap: 1rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .step-text h3 {
    font-size: 1.25rem;
  }

  .ticket-option-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .ticket-option-price {
    margin-left: 0;
    font-size: 1.75rem;
  }

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

  .modal-btn-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modal-btn {
    padding: 1.1rem 2rem;
  }

  .success-icon-large {
    font-size: 4.5rem;
  }

  .success-title {
    font-size: 1.6rem;
  }
}

/* ===================================
   PARTICIPATE PAGES STYLES
   =================================== */

/* Hero Label */
.hero-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 30px;
  color: var(--iffc-green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 3.5rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
}

.benefit-card p {
  color: #9ca3af;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

/* Designers Showcase */
.designers-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.designer-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.designer-logo-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  color: white;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.designer-logo-item:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--iffc-green);
  transform: scale(1.05);
}

/* Participate Gallery */
.participate-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 350px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: white;
  font-size: 1.3rem;
  font-family: "Cinzel", serif;
  margin: 0;
}

/* What You Get Section */
.what-you-get-section {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.05),
    rgba(10, 21, 20, 0.8)
  );
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.package-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateX(10px);
}

.package-item i {
  font-size: 1.5rem;
  color: var(--iffc-green);
  flex-shrink: 0;
}

.package-item span {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

/* Registration Grid */
.registration-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

/* Registration Card */
.registration-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.card-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  margin-bottom: 1.5rem;
}

.registration-card h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
}

.registration-card > p {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Participate Form */
.participate-form .form-group {
  margin-bottom: 1.5rem;
}

.participate-form label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.participate-form input,
.participate-form select,
.participate-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.participate-form input:focus,
.participate-form select:focus,
.participate-form textarea:focus {
  outline: none;
  border-color: var(--iffc-green);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.participate-form select {
  cursor: pointer;
}

.participate-form textarea {
  resize: vertical;
}

/* Resources Card */
.resources-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.resource-box {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.resource-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
}

.resource-icon {
  font-size: 3rem;
  color: var(--iffc-green);
  flex-shrink: 0;
}

.whatsapp-icon {
  color: #25d366;
}

.resource-content {
  flex: 1;
}

.resource-content h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
}

.resource-content p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

.resource-content .btn {
  padding: 0.75rem 1.5rem;
}

/* Info Box */
.info-box {
  padding: 2rem;
  background: rgba(201, 169, 97, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
}

.info-box h4 {
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-box h4 i {
  color: var(--iffc-green);
  font-size: 1.2rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  color: #9ca3af;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.info-box li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--iffc-green);
  font-size: 1.5rem;
  line-height: 1;
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.requirement-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
}

.requirement-icon {
  font-size: 2.5rem;
  color: var(--iffc-green);
  margin-bottom: 1rem;
}

.requirement-card h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
}

.requirement-card p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--iffc-green) 0%,
    rgba(201, 169, 97, 0.3) 100%
  );
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  margin-left: 3rem;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: var(--iffc-green);
}

.timeline-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c9a961, #b89550);
  color: var(--iffc-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: "Cinzel", serif;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
  position: relative;
  z-index: 2;
}

.timeline-item:hover .timeline-number {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.7);
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
}

.timeline-content p {
  color: #9ca3af;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

/* Participate Mobile Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .registration-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .resource-box {
    flex-direction: column;
    text-align: center;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    margin-left: 0;
    padding-left: 3rem;
  }

  .timeline-item::before {
    left: -1.5rem;
  }

  .process-timeline {
    padding-left: 1.5rem;
  }

  .process-timeline::before {
    left: 0;
  }

  .participate-gallery {
    grid-template-columns: 1fr;
  }

  .designer-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   FLATPICKR DATEPICKER CUSTOM THEME
   =================================== */

.datepicker-input {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.datepicker-input:hover {
  border-color: rgba(201, 169, 97, 0.3) !important;
}

.datepicker-input:focus {
  border-color: #c9a961 !important;
}

/* Flatpickr Container */
.flatpickr-calendar {
  background: linear-gradient(135deg, #0a1a17 0%, #0d1f1c 100%) !important;
  border: 2px solid rgba(201, 169, 97, 0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
}

.flatpickr-calendar.open {
  z-index: 10001 !important;
}

/* Month Navigation */
.flatpickr-months {
  background: rgba(201, 169, 97, 0.1) !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2) !important;
  padding: 1rem !important;
}

.flatpickr-current-month {
  color: white !important;
  font-family: "Cinzel", serif !important;
  font-size: 1.1rem !important;
}

.flatpickr-monthDropdown-months {
  background: rgba(10, 26, 23, 0.95) !important;
  color: white !important;
  border: 1px solid rgba(201, 169, 97, 0.3) !important;
  font-family: "Inter", sans-serif !important;
}

.flatpickr-monthDropdown-months:hover {
  background: rgba(201, 169, 97, 0.1) !important;
}

.numInputWrapper:hover {
  background: rgba(201, 169, 97, 0.1) !important;
}

.numInput {
  color: white !important;
  background: transparent !important;
  font-family: "Cinzel", serif !important;
}

/* Arrow Buttons */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #c9a961 !important;
  fill: #c9a961 !important;
  transition: all 0.3s ease !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #d4b670 !important;
  fill: #d4b670 !important;
  background: rgba(201, 169, 97, 0.1) !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 16px !important;
  height: 16px !important;
}

/* Weekdays */
.flatpickr-weekdays {
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-weekday {
  color: #c9a961 !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

/* Days Container */
.flatpickr-days {
  background: transparent !important;
}

.dayContainer {
  background: transparent !important;
}

/* Day Cells */
.flatpickr-day {
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.3s ease !important;
}

.flatpickr-day:hover {
  background: rgba(201, 169, 97, 0.2) !important;
  border-color: rgba(201, 169, 97, 0.4) !important;
  color: white !important;
}

/* Today */
.flatpickr-day.today {
  border-color: #c9a961 !important;
  background: rgba(201, 169, 97, 0.1) !important;
  color: white !important;
}

.flatpickr-day.today:hover {
  background: rgba(201, 169, 97, 0.2) !important;
  border-color: #c9a961 !important;
}

/* Selected Date */
.flatpickr-day.selected {
  background: linear-gradient(135deg, #c9a961, #b89550) !important;
  border-color: #c9a961 !important;
  color: #0a1514 !important;
  font-weight: 700 !important;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4) !important;
}

.flatpickr-day.selected:hover {
  background: linear-gradient(135deg, #d4b670, #c9a961) !important;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.6) !important;
}

/* Disabled Days */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Time Picker (if enabled) */
.flatpickr-time {
  background: rgba(255, 255, 255, 0.02) !important;
  border-top: 1px solid rgba(201, 169, 97, 0.2) !important;
}

.flatpickr-time input {
  color: white !important;
  font-family: "Inter", sans-serif !important;
}

.flatpickr-time .flatpickr-am-pm {
  color: white !important;
  background: rgba(201, 169, 97, 0.1) !important;
}

/* Multiple Date Selection Indicator */
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange {
  background: linear-gradient(135deg, #c9a961, #b89550) !important;
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.5) !important;
}

.flatpickr-day.inRange {
  background: rgba(201, 169, 97, 0.15) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .flatpickr-calendar {
    width: 95vw !important;
    max-width: 400px !important;
  }

  .flatpickr-day {
    height: 35px !important;
    line-height: 35px !important;
  }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

/* Social Banner */
.social-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-banner-text h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.social-banner-text p {
  color: #9ca3af;
  font-family: "Inter", sans-serif;
}

.social-banner-links {
  display: flex;
  gap: 1.5rem;
}

.social-banner-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid;
}

.social-banner-btn.youtube {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
}

.social-banner-btn.youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-banner-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: #bc1888;
  color: white;
}

.social-banner-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

.social-banner-btn i {
  font-size: 1.5rem;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn i {
  font-size: 1.1rem;
}

.filter-btn:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: rgba(201, 169, 97, 0.5);
  color: var(--iffc-green);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #c9a961, #b89550);
  border-color: #c9a961;
  color: var(--iffc-black);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 169, 97, 0.5);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.9) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view-btn {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 97, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--iffc-black);
  font-size: 1.5rem;
  cursor: pointer;
  align-self: center;
  margin: auto;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-view-btn:hover {
  background: var(--iffc-green);
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

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

.gallery-info h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.25rem;
  font-family: "Cinzel", serif;
}

.gallery-info p {
  font-size: 0.9rem;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.video-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 97, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--iffc-black);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

.video-play-btn:hover {
  background: var(--iffc-green);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.6);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.video-info p {
  font-size: 0.9rem;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: linear-gradient(135deg, #c9a961, #b89550);
  border: none;
  color: var(--iffc-black);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.lightbox-close {
  top: 2.5rem;
  right: 2.5rem;
}

.lightbox-prev {
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: linear-gradient(135deg, #d4b670, #c9a961);
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.15);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.15);
}

.lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 10001;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.lightbox-caption {
  text-align: center;
  color: white;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  max-width: 800px;
  padding: 0 2rem;
}

.lightbox-caption strong {
  display: block;
  color: #c9a961;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.lightbox-caption br + text {
  color: #9ca3af;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
}

.lightbox-counter {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a961, #b89550);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: var(--iffc-black);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  z-index: 10002;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
  letter-spacing: 0.1em;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal.active {
  display: flex;
}

.video-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(201, 169, 97, 0.9);
  border: none;
  color: var(--iffc-black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-modal-close:hover {
  background: var(--iffc-green);
  transform: scale(1.1);
}

.video-modal-content {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Gallery Mobile Responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .social-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .social-banner-links {
    flex-direction: column;
    width: 100%;
  }

  .social-banner-btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-filters {
    gap: 0.75rem;
    padding: 1rem;
  }

  .filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-close,
  .video-modal-close {
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }

  .lightbox-counter {
    top: 1rem;
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
  }

  .lightbox-caption {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .lightbox-caption strong {
    font-size: 1.4rem;
  }

  .lightbox-content img {
    max-height: 70vh;
  }
}

/* ===================================
   PRESS & MEDIA PAGE STYLES
   =================================== */

/* Media Logos Grid */
.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.media-logo-item {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  color: white;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.media-logo-item:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--iffc-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Press Categories */
.press-categories {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-category-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.press-category-btn i {
  font-size: 1rem;
}

.press-category-btn:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: rgba(201, 169, 97, 0.5);
  color: var(--iffc-green);
  transform: translateY(-2px);
}

.press-category-btn.active {
  background: linear-gradient(135deg, #c9a961, #b89550);
  border-color: #c9a961;
  color: var(--iffc-black);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

/* Press Grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.press-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.press-card.hidden {
  display: none;
}

.press-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.press-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  font-family: "Inter", sans-serif;
}

.government-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.sponsors-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.designers-badge {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
}

.delegations-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.media-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.press-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.press-card:hover .press-image img {
  transform: scale(1.1);
}

.press-video {
  position: relative;
}

.press-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(201, 169, 97, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--iffc-black);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  z-index: 2;
}

.press-play-btn:hover {
  background: var(--iffc-green);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.6);
}

.press-content {
  padding: 2rem;
}

.press-date {
  display: block;
  color: #c9a961;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
}

.press-content h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  line-height: 1.4;
}

.press-content p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.press-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
}

.press-meta i {
  color: var(--iffc-green);
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--iffc-green);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.press-link:hover {
  gap: 1rem;
  color: #d4b670;
}

/* Press Releases Grid */
.press-releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.press-release-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.press-release-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--iffc-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.press-release-header {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.1),
    rgba(10, 21, 20, 0.5)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.press-release-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201, 169, 97, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.press-release-card:hover .press-release-header::before {
  opacity: 1;
}

.press-release-icon-large {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
}

.press-release-card:hover .press-release-icon-large {
  transform: scale(1.1);
}

.press-release-icon-large i {
  font-size: 5rem;
  color: #ef4444;
  filter: drop-shadow(0 10px 20px rgba(239, 68, 68, 0.3));
  transition: all 0.4s ease;
}

.press-release-card:hover .press-release-icon-large i {
  color: #dc2626;
  filter: drop-shadow(0 15px 30px rgba(239, 68, 68, 0.5));
}

.file-type {
  padding: 0.5rem 1.5rem;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 30px;
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.press-release-card:hover .file-type {
  background: rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
  color: white;
}

.press-release-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.press-release-body h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.press-release-card:hover .press-release-body h4 {
  color: var(--iffc-green);
}

.press-release-body p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  flex: 1;
}

.press-release-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.file-size {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.press-release-footer {
  padding: 0 2rem 2rem;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #c9a961, #b89550);
  color: var(--iffc-black);
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.download-btn:hover {
  background: linear-gradient(135deg, #d4b670, #c9a961);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
  transform: translateY(-2px);
}

.download-btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.download-btn:hover i {
  transform: translateY(2px);
}

/* Media Contact Grid */
.media-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.media-contact-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.media-contact-card h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
}

.media-contact-card > p {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

/* Press Mobile Responsive */
@media (max-width: 768px) {
  .media-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .media-logo-item {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    min-height: 100px;
  }

  .press-categories {
    gap: 0.75rem;
    padding: 1rem;
  }

  .press-category-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .press-releases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .press-release-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .press-release-header {
    padding: 2.5rem 1.5rem 1.5rem;
    min-height: 150px;
  }

  .press-release-icon-large i {
    font-size: 4rem;
  }

  .press-release-body {
    padding: 1.5rem;
  }

  .press-release-body h4 {
    font-size: 1.15rem;
  }

  .press-release-footer {
    padding: 0 1.5rem 1.5rem;
  }

  .download-btn {
    padding: 1.1rem 1.75rem;
    font-size: 0.9rem;
  }

  .media-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .media-contact-card {
    padding: 2rem 1.5rem;
  }
}
