/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Pastikan semua gambar responsif */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Pastikan semua gambar responsif */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== NAVBAR UNIVERSAL (100% COPY DARI MEMBER.CSS) ==================== */
.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);
}

/* ==================== NAVBAR RESPONSIVE ==================== */
@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;
  }
}
/* ==================== GALLERY HEADER ==================== */
.gallery-header {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Animated background effect */
.gallery-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 102, 102, 0.1) 0%,
    rgba(255, 153, 102, 0.05) 30%,
    transparent 70%
  );
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
}

.gallery-header h1 {
  font-size: clamp(2.5em, 6vw, 4em);
  margin-bottom: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #c96 0%, #ff9966 50%, #ffcc99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.gallery-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #c96, transparent);
  border-radius: 0px;
}

/* ==================== GALLERY WRAPPER ==================== */
.gallery-wrapper {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 40px 100px;
}

/* ==================== GALLERY CONTAINER ==================== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ==================== GALLERY ITEM ==================== */
.gallery-item {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 102, 102, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(201, 102, 102, 0.4),
    0 0 0 1px rgba(201, 102, 102, 0.4);
  border-color: rgba(201, 102, 102, 0.3);
  border-radius: 0;
}

/* Gallery Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.05);
}

/* Gradient Overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(26, 26, 26, 0.3) 40%,
    transparent 100%
  );
  z-index: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(201, 102, 102, 0.2) 20%,
    rgba(26, 26, 26, 0.4) 50%,
    transparent 100%
  );
}

/* Shine effect */
.shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .shine {
  opacity: 1;
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Empty State */
.gallery-container p {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  font-size: 1.2em;
  padding: 60px 20px;
}

.gallery-container p small {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}

/* ==================== LIGHTBOX MODAL ==================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(201, 102, 102, 0.9);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 102, 102, 0.4);
}

.lightbox-close:hover {
  background: rgba(255, 102, 102, 1);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 102, 102, 0.6);
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 102, 102, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-nav:hover {
  background: rgba(255, 102, 102, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ==================== FOOTER ==================== */
.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 */
.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;
}

.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 */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Brand Section */
.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;
}

.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 */
.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 */
.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 */
.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 */
.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%;
}

/* ==================== MEDIA QUERIES ==================== */

/* Large Desktop (1400px+) */
@media screen and (min-width: 1400px) {
  .gallery-wrapper {
    max-width: 1600px;
  }
}

/* Desktop (1024px - 1400px) */
@media screen and (min-width: 1024px) and (max-width: 1399px) {
  .gallery-header {
    padding: 70px 20px 40px;
  }
  
  .gallery-wrapper {
    padding: 0 30px 80px;
  }
  
  .gallery-container {
    gap: 25px;
  }
}

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
  .gallery-header {
    padding: 60px 20px 35px;
  }
  
  .gallery-wrapper {
    margin: 50px auto;
    padding: 0 25px 70px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .footer-content {
    gap: 50px;
  }
  
  .footer-container {
    padding: 0 40px;
  }
  
  .brand-name h3 {
    font-size: 26px;
  }
  
  .tagline {
    font-size: 14px;
  }
}

/* Tablet Portrait & Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .gallery-header {
    padding: 50px 15px 30px;
  }
  
  .gallery-wrapper {
    margin: 40px auto;
    padding: 0 15px 60px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    max-width: 100%;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }

  .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;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .gallery-header {
    padding: 40px 15px 25px;
  }
  
  .gallery-wrapper {
    margin: 30px auto;
    padding: 0 15px 50px;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .lightbox-content img {
    max-width: 95vw;
    border-radius: 0px;
  }
  
  .lightbox-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .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;
  }
}

/* Extra Small Mobile (max-width: 360px) */
@media screen and (max-width: 360px) {
  .gallery-wrapper {
    padding: 0 12px 40px;
  }

  .footer {
    padding: 30px 12px 18px;
  }
}