/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ==================== NAVBAR UNIVERSAL ==================== */
/* ==================== ULTRA MODERN OPTIMIZED NAVBAR ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 50px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 153, 102, 0.08);
  height: 72px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Scroll Effects - Optimized */
.navbar.scroll-up {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scroll-down {
  transform: translateY(-100%);
}

/* Logo - Simple & Fast */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.logo:hover .logo-img {
  transform: translateY(-2px);
}

/* Nav Links Container - Optimized Grid */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Nav Links - Ultra Clean */
.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s ease;
  will-change: color;
}

/* Underline Effect - GPU Accelerated */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

.nav-links li a:hover {
  color: #ffffff;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: #ff9966;
  font-weight: 600;
}

/* ==================== PROFILE SECTION - OPTIMIZED ==================== */
.nav-profile {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.profile-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.profile-btn:hover {
  transform: scale(1.08);
}

/* Hide text completely */
.profile-btn span {
  display: none !important;
  visibility: hidden !important;
}

/* Avatar - Clean & Visible */
.profile-avatar-nav {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: block;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .profile-avatar-nav {
  border-color: #ff9966;
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.4);
}

/* Guest Icon */
.guest-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #c96, #ff9966);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .guest-icon {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.5);
}

/* Dropdown Menu - Lightweight */
.profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  list-style: none;
  display: none;
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.profile-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: rgba(15, 15, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.profile-menu[aria-hidden="false"] {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.profile-menu li {
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  will-change: background, color;
}

.profile-menu li a:hover {
  color: #ffffff;
  background: rgba(255, 153, 102, 0.1);
}

.profile-menu li:not(:last-child) {
  margin-bottom: 2px;
}

.profile-menu li:last-child {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==================== RESPONSIVE OPTIMIZED ==================== */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 40px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links li a {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
    height: auto;
    min-height: 70px;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li a {
    padding: 9px 12px;
    font-size: 11px;
  }

  .logo-img {
    height: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
    height: auto;
  }

  .nav-links {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .nav-links li a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .profile-avatar-nav,
  .guest-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .profile-btn {
    min-width: 36px;
    min-height: 36px;
  }

  .logo-img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-links li a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .logo-img {
    height: 34px;
  }

  .profile-menu {
    min-width: 170px;
  }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
/* Reduce repaints and reflows */
.navbar,
.nav-links li a,
.profile-btn,
.profile-menu {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* Hardware acceleration for smooth animations */
.nav-links li a::after,
.profile-avatar-nav,
.guest-icon,
.profile-menu {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Optimize hover states - no layout shifts */
.nav-links li a:hover,
.profile-btn:hover {
  transform: translateZ(0);
}

/* Prevent font rendering issues */
.navbar,
.nav-links,
.profile-menu {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce blur complexity on low-end devices */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .profile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.98);
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Container query for future-proofing */
@supports (container-type: inline-size) {
  .navbar {
    container-type: inline-size;
  }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(201,102,102,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-text {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}

.hero-text p {
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, #c96 0%, #ff9966 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(201,102,102,0.4);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,102,102,0.6);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #c96;
  transform: scale(1.3);
  border-color: rgba(255,255,255,0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(201,102,102,0.3);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(201,102,102,0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  padding: 80px 20px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c96, transparent);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c96, #ff9966);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,102,102,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  border-color: rgba(201,102,102,0.4);
  box-shadow: 0 15px 40px rgba(201,102,102,0.3);
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,102,102,0.6) 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  background: rgba(0,0,0,0.9);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,153,102,0.3);
  color: #ff9966;
}

/* ==================== HISTORY SECTION ==================== */
.history-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(201,102,102,0.3) 100%);
}

.history-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.history-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.history-content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
}

.read-more {
  display: inline-block;
  color: #ff9966;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding-bottom: 5px;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c96, #ff9966);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.read-more:hover::after {
  transform: scaleX(1);
}



/* ==================== NEWS SECTION ==================== */
.news-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c96, transparent);
}

.news-header {
  text-align: left;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.release-tag {
  display: inline-block;
  background: linear-gradient(135deg, #c96, #ff9966);
  color: white;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(201, 102, 102, 0.4);
  width: fit-content;
}

.modern-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.modern-news-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(201, 102, 102, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 450px;
}

@media (max-width: 768px) {
  .modern-news-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .news-section {
    padding: 60px 15px;
  }
  
  .news-header {
    margin-bottom: 35px;
    gap: 12px;
  }
  
  .news-header .section-title {
    font-size: 24px;
    margin-bottom: 0;
  }
  
  .release-tag {
    font-size: 10px;
    padding: 6px 18px;
  }

  .modern-image-container {
    min-height: 300px;
  }
  
  .modern-news-content {
    padding: 30px 25px;
  }
  
  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modern-news-title {
    font-size: 20px;
  }

  .news-excerpt {
    font-size: 13px;
  }
  
  .news-info {
    gap: 15px;
  }
  
  .floating-badge {
    top: 20px;
    left: 20px;
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .news-header {
    gap: 10px;
  }
  
  .news-header .section-title {
    font-size: 20px;
  }
  
  .release-tag {
    font-size: 9px;
    padding: 5px 15px;
    letter-spacing: 1.5px;
  }
  
  .modern-image-container {
    min-height: 250px;
  }

  .modern-news-content {
    padding: 25px 20px;
  }

  .modern-news-title {
    font-size: 18px;
  }
}

.modern-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 102, 102, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(201, 102, 102, 0.15);
}

.modern-image-container {
  position: relative;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  background: #000;
}

.news-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease-out;
}

.modern-news-card:hover .news-hero-image {
  transform: scale(1.05);
}

.image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, transparent 0%, rgba(10, 10, 10, 0.3) 50%, rgba(15, 15, 15, 0.95) 100%);
  z-index: 1;
}

.modern-news-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.news-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 102, 102, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(201, 102, 102, 0.25);
  transition: all 0.3s ease;
}

.news-category:hover {
  background: rgba(201, 102, 102, 0.18);
  border-color: rgba(201, 102, 102, 0.4);
}

.category-icon {
  font-size: 14px;
}

.category-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ff9966;
}

.news-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.modern-news-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: -0.5px;
}

.modern-news-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c96, #ff9966);
  border-radius: 3px;
}

.news-excerpt {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 2px solid rgba(201, 102, 102, 0.4);
  font-weight: 400;
}

.news-info {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.info-icon {
  font-size: 15px;
  opacity: 0.8;
}

.floating-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 153, 102, 0.4);
  border-radius: 18px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff9966;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Modern Read More Button */
.modern-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c96, #ff9966);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(201, 102, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.modern-read-more-btn:hover::before {
  left: 100%;
}

.modern-read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 102, 102, 0.5);
}

.modern-read-more-btn svg {
  transition: transform 0.3s ease;
}

.modern-read-more-btn:hover svg {
  transform: translateX(5px);
}

/* ==================== MERCH SECTION ==================== */
.merch-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.merch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(201,102,102,0.4) 100%);
}

.merch-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.merch-image {
  position: relative;
}

.merch-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(201,102,102,0.4);
  transition: transform 0.4s;
}

.merch-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.merch-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.merch-content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.95;
}

/* ==================== BOOKING SECTION ==================== */
.booking-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  text-align: center;
}

.booking-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 25px;
}

.booking-btn {
  display: inline-block;
  padding: 15px 45px;
  background: linear-gradient(135deg, #c96 0%, #ff9966 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s;
  box-shadow: 0 15px 40px rgba(201,102,102,0.4);
}

.booking-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(201,102,102,0.6);
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 100px;
  border-top: 3px solid rgba(201, 102, 102, 0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left img {
  width: 90px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(201, 102, 102, 0.5));
}

.footer-left p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.footer-left hr {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-left small {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-center {
  flex: 1 1 250px;
}

.footer-center h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: brightness(0.8);
  border-radius: 50%;
}

.social-icons a img:hover {
  transform: translateY(-8px) scale(1.2);
  filter: brightness(1.3) drop-shadow(0 8px 20px rgba(201, 102, 102, 0.6));
}

.footer-center p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-right {
  flex: 1 1 200px;
}

.footer-right h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-right ul {
  list-style: none;
}

.footer-right li {
  margin-bottom: 12px;
}

.footer-right a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.footer-right a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-right a:hover {
  color: var(--secondary-color);
  padding-left: 25px;
}

.footer-right a:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .nav-links {
      gap: 3px;
  }
  
  .nav-links li a {
      padding: 8px 12px;
      font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .navbar {
      padding: 15px 20px;
      height: auto;
      min-height: 80px;
  }
  
  .nav-links {
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .nav-links li a {
      padding: 6px 10px;
      font-size: 12px;
  }

  .hero-slider {
      height: 60vh;
      min-height: 450px;
  }
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      gap: 15px;
      padding: 15px 20px;
  }
  
  .nav-links {
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
  }

  .nav-links li a {
      padding: 8px 10px;
      font-size: 11px;
  }

  .hero-slider {
      height: 50vh;
      min-height: 400px;
  }

  .hero-text h1 {
      font-size: 28px;
  }

  .slider-arrow {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }

  .slider-arrow.prev {
      left: 15px;
  }

  .slider-arrow.next {
      right: 15px;
  }

  .gallery-section {
      padding: 60px 15px;
  }

  .gallery-grid {
      grid-template-columns: 1fr;
  }

  .history-section {
      min-height: 50vh;
      padding: 60px 20px;
      background-attachment: scroll;
  }

  .news-section {
      padding: 60px 15px;
  }

  .modern-image-container {
      min-height: 300px;
  }
  
  .modern-news-content {
      padding: 30px 25px;
  }
  
  .content-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
  }

  .modern-news-title {
      font-size: 20px;
  }

  .news-excerpt {
      font-size: 13px;
  }
  
  .news-info {
      gap: 15px;
  }
  
  .floating-badge {
      top: 20px;
      left: 20px;
      font-size: 10px;
      padding: 6px 12px;
  }

  .merch-section {
      padding: 60px 20px;
      min-height: auto;
      background-attachment: scroll;
  }

  .merch-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .merch-image img {
      max-width: 250px;
      margin: 0 auto;
  }

  .booking-section {
      padding: 60px 20px;
  }

  footer {
      padding: 40px 20px 30px;
      margin-top: 60px;
  }

  .footer-container {
      flex-direction: column;
      gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
      flex: 1 1 100%;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }

  .footer-left img.logo {
      width: 70px;
  }
}

@media (max-width: 480px) {
  .modern-image-container {
      min-height: 250px;
  }

  .modern-news-content {
      padding: 25px 20px;
  }

  .modern-news-title {
      font-size: 18px;
  }
}

.footer {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    border-top: 1px solid rgba(201, 102, 102, 0.15);
}

/* Decorative elements - Enhanced */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c96 20%, 
        #ff9966 40%, 
        #ffa500 50%, 
        #ff9966 60%, 
        #c96 80%, 
        transparent 100%
    );
    animation: gradientFlow 8s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 102, 102, 0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.15; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.25; 
    }
}

.glow-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 102, 0.12), transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite 3s;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

/* Main Content Grid - Premium Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Section - Premium */
.brand-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c96 0%, #ff9966 50%, #ffa500 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: #000;
    box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #c96, #ff9966);
    border-radius: 14px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-circle:hover::before {
    opacity: 0.6;
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(255, 153, 102, 0.7);
    }
}

.brand-name h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #ff9966 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-name p {
    font-size: 11px;
    color: #ff9966;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
}

.tagline {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 102, 102, 0.08);
    border: 1px solid rgba(201, 102, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ff9966;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c96, #ff9966);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: #ff9966;
    box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    transform: scale(1.1);
    color: #000;
}

/* Contact Info - Premium */
.contact-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
}

.contact-phone {
    color: #ff9966;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-phone:hover {
    color: #ffa500;
    text-shadow: 0 0 15px rgba(255, 153, 102, 0.6);
    transform: translateX(3px);
}

/* Links Section - Premium */
.links-section h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff9966;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.links-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9966, #ffa500);
    border-radius: 3px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.links-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
    line-height: 1.5;
    font-weight: 500;
}

.links-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9966, #ffa500);
    transition: width 0.3s ease;
}

.links-list a:hover {
    color: #ffffff;
    padding-left: 18px;
}

.links-list a:hover::before {
    width: 12px;
}

/* Follow Us Section - Premium */
.follow-section h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff9966;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.follow-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9966, #ffa500);
    border-radius: 3px;
}

.follow-section p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.follow-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.follow-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(201, 102, 102, 0.08);
    border: 1px solid rgba(201, 102, 102, 0.25);
    border-radius: 10px;
    text-decoration: none;
    color: #d0d0d0;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.follow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c96, #ff9966);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.follow-btn:hover::before {
    opacity: 1;
}

.follow-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.follow-btn span {
    position: relative;
    z-index: 1;
}

.follow-btn .follower-count {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.follow-btn:hover {
    color: #000;
    border-color: #ff9966;
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(201, 102, 102, 0.5);
}

.follow-btn:hover svg {
    transform: scale(1.1);
}

/* Bottom Section - Premium */
.footer-bottom {
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid rgba(201, 102, 102, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.copyright {
    color: #888888;
    line-height: 1.6;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9966, #ffa500);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff9966;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        gap: 50px;
    }
    
    .footer-container {
        padding: 0 40px;
    }
    
    .brand-name h3 {
        font-size: 26px;
    }
    
    .tagline {
        font-size: 14px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-bottom: 40px;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding-top: 25px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
    
    .brand-section {
        gap: 20px;
        text-align: center;
    }
    
    .brand-logo-group {
        justify-content: center;
    }
    
    .logo-circle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .brand-name h3 {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .contact-phone {
        font-size: 18px;
    }
    
    .links-section h4,
    .follow-section h4 {
        text-align: center;
    }
    
    .links-section h4::after,
    .follow-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .links-list {
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-container {
        padding: 0 25px;
    }
    
    .brand-section {
        gap: 18px;
    }
    
    .logo-circle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .brand-name h3 {
        font-size: 22px;
    }
    
    .tagline {
        font-size: 13px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-info {
        margin-top: 18px;
        padding-top: 18px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 17px;
    }
    
    .links-section h4,
    .follow-section h4 {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .links-list {
        gap: 11px;
    }
    
    .links-list a {
        font-size: 14px;
    }
    
    .follow-section p {
        font-size: 13px;
    }
    
    .follow-buttons {
        gap: 10px;
    }
    
    .follow-btn {
        padding: 13px 16px;
        font-size: 14px;
    }
    
    .follow-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
        gap: 15px;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}