member.css
/* ==================== RESET & BASE ==================== */
/* ==================== QUICK OVERFLOW FIX ==================== */
/* Hapus overflow horizontal */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Navbar fix */
.navbar {
    width: 100vw;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 18px clamp(15px, 3vw, 50px);
}

/* Member container fix */
.member-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(10px, 3vw, 20px) 100px;
    box-sizing: border-box;
}

/* Member card fix */
.member-card {
    max-width: 280px;
    width: 100%;
}

/* Footer fix */
.footer-container {
    max-width: 100%;
    padding: 0 clamp(20px, 4vw, 50px);
}

/* Responsive media queries */
@media (max-width: 768px) {
    .member-container {
        padding: 0 10px 60px;
    }
    
    .member-card {
        max-width: 260px;
    }
}
* {
  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;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== NAVBAR UNIVERSAL (100% COPY DARI BERANDA.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);
}

/* ==================== 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;
  }
}

/* ==================== MEMBER SECTION ==================== */
.member-header {
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
}

.member-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 102, 102, 0.15) 0%,
    rgba(255, 153, 102, 0.08) 30%,
    transparent 70%
  );
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 0.9; }
}

.member-header h1 {
  font-size: clamp(2.8em, 7vw, 4.5em);
  margin-bottom: 25px;
  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: 6px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.member-header h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #c96, #ff9966, transparent);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(201, 102, 102, 0.6);
}

.member-header p {
  font-size: clamp(1.1em, 2.5vw, 1.4em);
  margin-bottom: 20px;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ==================== MEMBER CONTAINER (5 CARDS PER ROW) ==================== */
.member-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1600px; /* Lebih lebar untuk 5 cards */
  margin: 0 auto;
  padding: 0 20px 100px;
}

/* Member Card - Ukuran disesuaikan untuk 5 per row */
.member-card {
  width: 260px; /* Lebih kecil agar muat 5 */
  height: 420px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px 20px 5px 5px;
  flex-shrink: 0;
}

.member-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(201, 102, 102, 0) 0%,
    rgba(201, 102, 102, 0.3) 50%,
    rgba(255, 153, 102, 0) 100%
  );
  border-radius: 20px 20px 5px 5px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(15px);
}

.member-card:hover::after {
  opacity: 1;
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.7s ease;
  z-index: 10;
  transform: skewX(-20deg);
}

.member-card:hover::before {
  left: 150%;
}

.member-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 
    0 25px 70px rgba(201, 102, 102, 0.4),
    0 0 0 1px rgba(201, 102, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 102, 102, 0.5);
}

/* Visual Container */
.member-visual {
  position: relative;
  width: 100%;
  height: 330px; /* Disesuaikan dengan card yang lebih kecil */
  overflow: hidden;
  background: #000;
  border-radius: 20px 20px 0 0;
}

.member-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: grayscale(40%) brightness(0.85) contrast(1.1);
}

.member-card:hover .member-photo-img {
  transform: scale(1.12);
  filter: grayscale(0%) brightness(1.08) contrast(1.15);
}

.member-visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.95) 20%,
    rgba(26, 26, 26, 0.7) 40%,
    rgba(26, 26, 26, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
  transition: all 0.6s ease;
}

.member-card:hover .member-visual::before {
  height: 85%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(201, 102, 102, 0.15) 15%,
    rgba(255, 153, 102, 0.08) 30%,
    rgba(26, 26, 26, 0.5) 50%,
    transparent 100%
  );
}

.member-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 102, 102, 0.5) 25%,
    rgba(255, 153, 102, 0.7) 50%,
    rgba(201, 102, 102, 0.5) 75%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.member-card:hover .member-visual::after {
  opacity: 1;
}

/* Member Info */
.member-card h3,
.member-card p {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 25px;
}

.member-card h3 {
  bottom: 60px;
  font-size: 1.4em;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(201, 102, 102, 0.3);
  line-height: 1.2;
}

.member-card:hover h3 {
  bottom: 65px;
  color: #ff9966;
  text-shadow: 
    0 3px 20px rgba(0, 0, 0, 1),
    0 0 40px rgba(201, 102, 102, 0.7),
    0 0 60px rgba(255, 153, 102, 0.5);
  letter-spacing: 3px;
}

.member-card p {
  bottom: 30px;
  font-size: 0.9em;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.95;
}

.member-card:hover p {
  bottom: 35px;
  color: #ffcc99;
  opacity: 1;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 204, 153, 0.5);
}

.member-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c96, #ff9966, #ffcc99, transparent);
  margin: 10px auto 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px rgba(201, 102, 102, 0.6);
  border-radius: 2px;
}

.member-card:hover h3::after {
  width: 80px;
  box-shadow: 0 0 30px rgba(201, 102, 102, 1);
}

/* ==================== RESPONSIVE (100% COPY DARI BERANDA.CSS) ==================== */

/* Extra Large Desktop - Member Cards */
@media (min-width: 1600px) {
  .member-container {
    max-width: 1600px;
    gap: 25px;
  }
  
  .member-card {
    width: 280px;
    height: 440px;
  }
  
  .member-visual {
    height: 350px;
  }
}

/* Large Desktop - Member Cards */
@media (min-width: 1400px) and (max-width: 1599px) {
  .member-container {
    max-width: 1500px;
    gap: 20px;
  }
  
  .member-card {
    width: 270px;
    height: 430px;
  }
  
  .member-visual {
    height: 340px;
  }
}

/* Navbar Responsive - 1200px */
@media (max-width: 1200px) {
  .nav-links {
      gap: 3px;
  }
  
  .nav-links li a {
      padding: 8px 12px;
      font-size: 13px;
  }
  
  /* Member Cards */
  .member-container {
    max-width: 1200px;
    gap: 20px;
  }
  
  .member-card {
    width: 260px;
    height: 420px;
  }
  
  .member-visual {
    height: 330px;
  }
}

/* Navbar Responsive - 1024px */
@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;
  }
  
  /* Member Cards */
  .member-container {
    max-width: 900px;
    gap: 20px;
  }
  
  .member-card {
    width: 260px;
    height: 410px;
  }
  
  .member-visual {
    height: 320px;
  }
}

/* Navbar Responsive - 768px */
@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;
  }

  .member-header {
      padding: 60px 20px 40px;
  }

  /* Member Cards */
  .member-container {
      padding: 0 15px 60px;
      max-width: 600px;
      gap: 20px;
  }

  .member-card {
      width: 260px;
      height: 410px;
  }

  .member-visual {
      height: 320px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  /* Member Cards */
  .member-container {
      gap: 25px;
      max-width: 100%;
  }
  
  .member-card {
      width: 280px;
      height: 420px;
      margin: 0 auto;
  }
  
  .member-visual {
      height: 330px;
  }
}
        /* Orange & Black Footer - Synced Theme */
        .footer {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            color: #ffffff;
            padding: 40px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #c96, #ff9966, #ffa500, #ff9966, #c96);
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .footer::after {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 102, 102, 0.15), transparent);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }

        .glow-circle {
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 153, 102, 0.12), transparent);
            border-radius: 50%;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .brand-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .brand-logo-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #c96, #ff9966);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: #000;
            box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4);
            animation: logoGlow 2s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% { box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(255, 153, 102, 0.6); }
        }

        .brand-name h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 3px;
            background: linear-gradient(90deg, #ffffff, #ff9966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 13px;
            line-height: 1.5;
            color: #cccccc;
            font-style: italic;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 5px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(201, 102, 102, 0.1);
            border: 1px solid rgba(201, 102, 102, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ff9966;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #c96, #ff9966);
            color: #000;
            box-shadow: 0 5px 20px rgba(201, 102, 102, 0.5);
            border-color: #ff9966;
        }

        .links-section h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: #ff9966;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .links-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .links-list a {
            color: #cccccc;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            padding-left: 0;
            position: relative;
        }

        .links-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: #ff9966;
            transition: width 0.3s ease;
        }

        .links-list a:hover {
            color: #ff9966;
            padding-left: 15px;
        }

        .links-list a:hover::before {
            width: 10px;
        }

        .follow-section h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: #ff9966;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .follow-section p {
            font-size: 12px;
            color: #999999;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .follow-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .follow-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            background: rgba(201, 102, 102, 0.1);
            border: 1px solid rgba(201, 102, 102, 0.3);
            border-radius: 8px;
            text-decoration: none;
            color: #cccccc;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .follow-btn:hover {
            background: linear-gradient(135deg, #c96, #ff9966);
            color: #000;
            border-color: #ff9966;
            transform: translateX(5px);
            box-shadow: 0 3px 15px rgba(201, 102, 102, 0.4);
        }

        .follow-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .follow-btn .follower-count {
            margin-left: auto;
            font-size: 11px;
            opacity: 0.7;
        }

        .contact-info {
            margin-top: 15px;
        }

        .contact-info p {
            color: #999999;
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .contact-phone {
            color: #ff9966;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .contact-phone:hover {
            color: #ffa500;
            text-shadow: 0 0 10px rgba(255, 153, 102, 0.5);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(201, 102, 102, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
        }

        .copyright {
            color: #666666;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #666666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ff9966;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 30px 0 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 20px;
            }

            .footer-container {
                padding: 0 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }