/* Start custom CSS for html, class: .elementor-element-eee5ec1 *//* ==========================================================================
   DESIGN TOKENS & VARIABLES (LIGHT THEME)
   ========================================================================== */
:root {
  /* Colors */
  --bg-main: #f8fafc; /* Latar belakang utama terang */
  --bg-darker: #ffffff; /* Latar belakang section sekunder */
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-hover: rgba(255, 255, 255, 1);
  
  --primary: #7b2cbf;
  --primary-glow: rgba(123, 44, 191, 0.2);
  --secondary: #0284c7;
  --secondary-glow: rgba(2, 132, 199, 0.2);
  --accent: #ea580c;
  --accent-glow: rgba(234, 88, 12, 0.2);
  
  --text-main: #0f172a; /* Teks utama gelap */
  --text-muted: #475569; /* Teks sekunder abu-abu */
  --text-inverse: #ffffff; /* Teks di atas tombol */
  
  --border-color: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --glow-border: rgba(123, 44, 191, 0.2);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, #5a189a 100%);
  --grad-secondary: linear-gradient(135deg, var(--secondary) 0%, #0369a1 100%);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  --grad-text: linear-gradient(90deg, #1e293b 0%, #475569 50%, var(--primary) 100%);
  --grad-text-neon: linear-gradient(90deg, var(--secondary) 0%, #9333ea 50%, var(--accent) 100%);
  --grad-card-border: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.01) 100%);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows & Blur */
  --glass-blur: blur(18px);
  --box-shadow-glow: 0 0 30px rgba(123, 44, 191, 0.1);
  --box-shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Glow Effects */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15; 
  transition: all var(--transition-slow);
}

.glow-purple {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--primary) 0%, rgba(255,255,255,0) 70%);
  top: -10vw;
  left: -10vw;
}

.glow-cyan {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(255,255,255,0) 70%);
  top: 40vw;
  right: -10vw;
}

.glow-orange {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent) 0%, rgba(255,255,255,0) 70%);
  bottom: -15vw;
  left: 20vw;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection Highlight */
::selection {
  background-color: var(--primary);
  color: var(--text-inverse);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

/* ==========================================================================
   LAYOUT MODULES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.max-w-md {
  max-width: 680px;
  margin: 0 auto;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-darker {
  background-color: var(--bg-darker);
  position: relative;
}

/* ==========================================================================
   UI COMPONENTS & BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-inverse);
  box-shadow: 0 8px 15px -5px rgba(123, 44, 191, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-secondary);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(2, 132, 199, 0.4), 0 0 15px var(--secondary-glow);
  color: var(--text-inverse);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

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

/* ==========================================================================
   NAVBAR STYLING
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 44, 191, 0.08);
  border: 1px solid var(--glow-border);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-glow);
  display: inline-block;
  animation: pulse-glow 2s infinite alternate;
}

/* Font Hero sudah diganti menjadi Outfit sesuai arahan */
.hero-title {
  font-family: 'Outfit', sans-serif; 
  font-size: 3.5rem; 
  font-weight: 800;
  max-width: 950px;
  line-height: 1.25; 
  margin-bottom: 24px;
  letter-spacing: -0.5px; 
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 750px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

/* Countdown Timer */
.countdown-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 24px 40px;
  margin-bottom: 60px;
  box-shadow: var(--box-shadow-card);
  max-width: 600px;
  width: 100%;
}

.countdown-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timer-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

/* Hero Visualizer Banner */
.hero-visual-container {
  margin-top: 20px;
  perspective: 1000px;
}

.hero-visual-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotateX(8deg);
  transition: transform var(--transition-slow);
}

.hero-visual-wrapper:hover {
  transform: rotateX(0deg) scale(1.01);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.1) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.visualizer-bars {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.visualizer-bars span {
  width: 3px;
  background: var(--grad-secondary);
  border-radius: 3px;
  animation: visualize 1.2s ease-in-out infinite alternate;
}

.visualizer-bars span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.visualizer-bars span:nth-child(2) { height: 80%; animation-delay: 0.4s; }
.visualizer-bars span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.visualizer-bars span:nth-child(4) { height: 95%; animation-delay: 0.6s; }
.visualizer-bars span:nth-child(5) { height: 40%; animation-delay: 0.3s; }
.visualizer-bars span:nth-child(6) { height: 75%; animation-delay: 0.5s; }
.visualizer-bars span:nth-child(7) { height: 60%; animation-delay: 0.15s; }
.visualizer-bars span:nth-child(8) { height: 90%; animation-delay: 0.7s; }
.visualizer-bars span:nth-child(9) { height: 35%; animation-delay: 0.25s; }
.visualizer-bars span:nth-child(10) { height: 70%; animation-delay: 0.45s; }

/* ==========================================================================
   ABOUT / QUICK INFO SECTION
   ========================================================================== */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 36px 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--secondary);
  transition: all var(--transition-normal);
}

.info-card:hover .info-icon {
  background: var(--secondary);
  color: var(--text-inverse);
  box-shadow: 0 8px 15px var(--secondary-glow);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 16px;
}

.info-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.info-card.highlight {
  border-color: var(--glow-border);
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.08);
}

.info-card.highlight .info-icon {
  background: rgba(123, 44, 191, 0.08);
  border-color: rgba(123, 44, 191, 0.15);
  color: var(--primary);
}

.info-card.highlight:hover .info-icon {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 8px 15px var(--primary-glow);
}

.info-tag.alert {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.2);
  color: #c2410c;
}

/* Section headers */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
}

/* ==========================================================================
   SPEAKERS SECTION
   ========================================================================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--box-shadow-card), 0 10px 20px rgba(2, 132, 199, 0.05);
}

.speaker-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #e2e8f0;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker-card:hover .speaker-img {
  transform: scale(1.05);
}

.speaker-socials {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.speaker-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.speaker-socials a:hover {
  background: var(--secondary);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px var(--secondary-glow);
}

.speaker-socials svg {
  width: 18px;
  height: 18px;
}

.speaker-info {
  padding: 32px;
}

.speaker-tag {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.speaker-name {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.speaker-bio {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   HOSTS SECTION
   ========================================================================== */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
}

.host-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: all var(--transition-normal);
}

.host-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 44, 191, 0.2);
  box-shadow: var(--box-shadow-card), 0 8px 20px rgba(123, 44, 191, 0.08);
}

.host-img-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #e2e8f0;
  border: 1px solid var(--border-color);
}

.host-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.host-card:hover .host-img {
  transform: scale(1.06);
}

.host-info {
  flex-grow: 1;
}

.host-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.host-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.host-bio {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   VENUE SECTION
   ========================================================================== */
.venue-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.venue-info-side {
  padding-right: 20px;
}

.venue-location-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.venue-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.venue-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.venue-meta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.venue-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.venue-meta-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.venue-map-side {
  width: 100%;
}

.map-wrapper {
  position: relative;
  aspect-ratio: 1.4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow-card);
}

.map-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition-normal);
}

.map-wrapper:hover .map-accent-border {
  border-color: var(--secondary);
}

.mt-4 {
  margin-top: 24px;
}

/* ==========================================================================
   REGISTRATION FORM & REGISTRATION AREA
   ========================================================================== */
.registration-section {
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.05) 0%, rgba(248, 250, 252, 0) 60%);
}

.registration-card {
  background: #ffffff;
  border: 1px solid var(--glow-border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), var(--box-shadow-glow);
  position: relative;
}

.registration-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(123,44,191,0.2) 0%, rgba(2,132,199,0.05) 50%, rgba(234,88,12,0.1) 100%);
  z-index: -1;
  pointer-events: none;
}

.registration-header {
  margin-bottom: 36px;
}

.badge-accent {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.registration-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   GOOGLE FORM EMBED STYLING
   ========================================================================== */
.google-form-wrapper {
  position: relative;
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
  /* Mengakali margin bawaan Google Form agar terlihat lebih menyatu */
  margin-left: -10px;
  width: calc(100% + 20px);
}

.google-form-wrapper iframe {
  width: 100%;
  /* Tinggi di-set cukup panjang agar scrollbar ganda di dalam iframe tidak muncul */
  height: 1100px; 
  border: none;
  display: block;
}

/* Penyesuaian tinggi iframe untuk layar Mobile karena layout Google Form 
   biasanya memanjang ke bawah saat dibuka di HP */
@media (max-width: 768px) {
  .google-form-wrapper {
    margin-left: -5px;
    width: calc(100% + 10px);
  }
  
  .google-form-wrapper iframe {
    height: 1350px; 
  }
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
@keyframes pulse-glow {
  0% {
    opacity: 0.6;
    box-shadow: 0 0 5px var(--secondary);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 15px var(--secondary-glow);
  }
}

@keyframes visualize {
  0% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

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

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* TRIK UNTUK ELEMENTOR EDIT MODE 
   Mencegah animasi opacity menahan konten saat edit */
body.elementor-editor-active .scroll-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .venue-layout-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section-padding { padding-top: 70px; padding-bottom: 70px; }
  .navbar { height: 70px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-section { padding-top: 140px; }
  .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
  .countdown-container { padding: 20px; }
  .timer-num { font-size: 2.2rem; }
  .speakers-grid { grid-template-columns: 1fr; gap: 30px; }
  .hosts-grid { grid-template-columns: 1fr; gap: 24px; }
  .host-card { padding: 20px; }
  .venue-layout-grid { grid-template-columns: 1fr; gap: 40px; }
  .venue-info-side { padding-right: 0; }
  .map-wrapper { aspect-ratio: 1.6; }
  .registration-card { padding: 30px 20px; }
  .registration-header h2 { font-size: 1.8rem; }
  .footer-container { flex-direction: column; gap: 40px; }
  .footer-links-group { gap: 40px; justify-content: space-between; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .timer-grid { gap: 8px; }
  .timer-num { font-size: 1.8rem; }
  .timer-label { font-size: 0.7rem; }
  .host-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .host-img-wrapper { width: 100px; height: 100px; }
  .footer-links-group { flex-direction: column; gap: 30px; }
}/* End custom CSS */