/* ==================== RESET & BASE ==================== */
* {
  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 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) !important;
  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::after {
  display: none !important;
}

.profile-menu li a:hover {
  color: #ffffff !important;
  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);
}

/* ==================== 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;
  }
}

/* ==================== AGENDA HEADER ==================== */
.agenda-header {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Animated background effect */
.agenda-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; }
}

.agenda-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;
}

.agenda-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: 2px;
}

.agenda-header p {
  font-size: clamp(1.1em, 2.5vw, 1.3em);
  margin-bottom: 20px;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Color highlights */
.orange {
  color: #ff9966;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 153, 102, 0.3);
}

.blue {
  color: #66ccff;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(102, 204, 255, 0.3);
}

/* ==================== AGENDA LIST ==================== */
.agenda-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 100px;
}

/* ==================== AGENDA CARD (Premium Design) ==================== */
.agenda-card {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  gap: 30px;
  background: linear-gradient(145deg, #1a1a1a 0%, #151515 100%);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

/* Shine effect */
.agenda-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 102, 102, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.agenda-card:hover::before {
  left: 100%;
}

.agenda-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 
    0 20px 60px rgba(201, 102, 102, 0.3),
    0 0 0 1px rgba(201, 102, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 102, 102, 0.3);
}

/* ==================== AGENDA DATE (Premium Style) ==================== */
.agenda-date {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 2px solid rgba(201, 102, 102, 0.3);
  transition: all 0.3s ease;
}

.agenda-card:hover .agenda-date {
  background: rgba(201, 102, 102, 0.1);
  border-color: rgba(201, 102, 102, 0.5);
  transform: scale(1.05);
}

.agenda-date .day {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  background: linear-gradient(135deg, #ff9966 0%, #ffcc99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.agenda-date .month {
  font-size: clamp(1em, 2vw, 1.3em);
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 2px;
  display: block;
}

.agenda-card:hover .agenda-date .month {
  color: #ff9966;
}

/* ==================== AGENDA DETAILS ==================== */
.agenda-details {
  position: relative;
  z-index: 2;
}

.agenda-details h2 {
  font-size: clamp(1.3em, 3vw, 1.8em);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.agenda-card:hover .agenda-details h2 {
  color: #ff9966;
  text-shadow: 0 0 20px rgba(255, 153, 102, 0.3);
  transform: translateX(5px);
}

.agenda-details p {
  font-size: clamp(0.95em, 2vw, 1.05em);
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.agenda-card:hover .agenda-details p {
  color: #ccc;
}

/* Location & Time icons */
.agenda-details p::before {
  content: "📍 ";
  margin-right: 5px;
}

/* ==================== AGENDA IMAGE ==================== */
.agenda-image {
  position: relative;
  z-index: 2;
}

.agenda-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.5s ease;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 102, 102, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.agenda-card:hover .agenda-image img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 
    0 15px 40px rgba(201, 102, 102, 0.4),
    0 0 0 2px rgba(201, 102, 102, 0.3);
  border-color: rgba(201, 102, 102, 0.3);
}

/* ==================== FOOTER STYLES ==================== */
/* Orange & Black Footer - Premium Modern Design */
.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: pulseFooter 6s ease-in-out infinite;
}

@keyframes pulseFooter {
  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 70%);
  border-radius: 50%;
  animation: pulseFooter 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;
  fill: currentColor;
  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 DESIGN ==================== */

/* Navbar Responsive - 1200px */
@media (max-width: 1200px) {
  .navbar {
      padding: 18px 40px;
  }

  .nav-links {
      gap: 8px;
  }

  .nav-links li a {
      padding: 10px 14px;
      font-size: 12px;
  }
}

/* Navbar Responsive - 1024px */
@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;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
  }
  
  .agenda-header {
      padding: 70px 20px 50px;
  }
  
  .agenda-list {
      padding: 30px 30px 80px;
  }
  
  .agenda-card {
      grid-template-columns: 110px 1fr 130px;
      padding: 25px;
  }
}

/* Navbar Responsive - 768px */
@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;
  }
  
  .agenda-header {
      padding: 60px 20px 40px;
  }
  
  .agenda-list {
      padding: 30px 25px 70px;
  }
  
  .agenda-card {
      grid-template-columns: 90px 1fr;
      grid-template-rows: auto auto;
      gap: 15px;
      padding: 20px;
  }
  
  .agenda-date {
      grid-column: 1;
      grid-row: 1;
      padding: 15px;
  }
  
  .agenda-details {
      grid-column: 2;
      grid-row: 1;
  }
  
  .agenda-image {
      grid-column: 1 / 3;
      grid-row: 2;
      justify-self: center;
  }
  
  .agenda-image img {
      width: 150px;
      height: 150px;
  }
  
  /* Footer Responsive */
  .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 - 480px */
@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;
  }
  
  .agenda-header {
      padding: 50px 15px 35px;
  }
  
  .agenda-list {
      padding: 25px 15px 60px;
  }
  
  .agenda-card {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      padding: 20px 15px;
      gap: 15px;
  }
  
  .agenda-date {
      grid-column: 1;
      grid-row: 1;
      text-align: center;
      padding: 12px;
  }
  
  .agenda-details {
      grid-column: 1;
      grid-row: 2;
      text-align: left;
  }
  
  .agenda-image {
      grid-column: 1;
      grid-row: 3;
      justify-self: center;
  }
  
  .agenda-image img {
      width: 180px;
      height: 180px;
  }
  
  /* Footer Mobile */
  .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;
  }
}