.body-wrapper {
    margin-top: -20px;
}

.platform-footer {
    background-color: unset
}

/* ===== HERO SECTION STYLING ===== */
.hero {
  background-image: linear-gradient(134deg, rgb(255 196 0) 0%, rgb(152 193 255 / 36%) 50%, rgb(61 211 45 / 78%) 100%), url(https://conference.unsil.ac.id/storage/media/1976/01KQ9S4KJF3X0YTAG77JD8QNYP.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  /* background-blend-mode: overlay, normal; */
  background-blend-mode: hard-light;
  position: relative;
  overflow: hidden;
  min-height: 65vh;
  place-items: normal;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 178, 115, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 179, 8, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(29, 53, 87, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  align-items: flex-start;
  max-width: unset;
}

.hero-content > * {
    box-shadow: 0 2px 8px rgb(0 0 0 / 27%);
    border-radius: 4px 64px 4px 64px;
    /* max-width: 800px; */
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: unset;
}

.hero-date,
.hero-location {
  /* color: var(--accent); */
  background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 2rem;
}

.hero-title {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  animation: fadeInUp 0.8s ease-out;
  margin: 20px auto !important;
  font-size: 3.5rem;
    color: white;
    color: var(--primary)
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown-timer {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.countdown-timer .tick-label {
  color: white;
  color: var(--primary)
}

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

/* Responsive hero */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
    background-attachment: scroll;
  }

  .hero-content > * {
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-radius: 4px 32px;
  }

  .hero-title {
    font-size: 1.5rem !important;
  }

  .hero-date,
  .hero-location {
        font-size: 0.8rem;
        line-height: 1.2rem;
        padding: 0 8px;
        background: var(--primary);
        display: inline-block;
        border-radius: 4px;
        margin-bottom: 4px;
  }
}

/* ===== NAVBAR STYLING ===== */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95) !important;
  transition: all 0.3s ease;
}

.navbar {
  padding: 0 20px;
}

.navbar-items {
  transition: all 0.3s ease;
}

.navbar-dropdown-content {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  background: white;
  min-width: 200px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* accreditation */
.accreditation-image-wrapper {
    background-color: white;
    padding: 8px 24px;
    border-radius: 32px;
    max-width: 90vw;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 30;
    position: relative;
    margin: auto;
    margin-top: -150px !important;
    width: 800px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Video Section */
#videoSection {
  margin: 60px 0;
  background-color: #1d3557;
  padding-top: 5rem;
    padding-bottom: 5rem;
}

#videoSection.light {
    background-color: white
}

@media (max-width: 768px) {
    #videoSection iframe {
        width: 90% !important;
        max-height: 400px;
    }

    .lead-text {
        font-size: 1.5rem !important;  
    }

    .countdown-timer .tick > * {
        font-size: 12px !important;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

.lead-text {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 200;
    margin-bottom: 20px;
    color: white;
}

#videoSection.light .lead-text {
    color: var(--primary);
}

/* Timeline */
.timeline-date {
    color: var(--accent);
}

.timeline-middle {
    color: var(--warning)
}

/* ===== COLOR PALETTE ===== */
:root {
  --primary: #1d3557;
  --accent: #3bb273;
  --silver: #c0c0c0;
  --warning: #eab308;
  --text-dark: #1d3557;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
}

/* ===== DEFAULT TEXT STYLING ===== */
* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  color: var(--text-dark);
  /* background-color: var(--bg-light); */
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--text-light);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== EXTERNAL LINK ICON ===== */
a[target="_blank"]:not(.btn):not(.button):not([class*="button"]):not([class*="btn"])::after,
a[rel*="external"]:not(.btn):not(.button):not([class*="button"]):not([class*="btn"])::after {
  content: ' ↗';
  display: inline-block;
  margin-left: 2px;
  font-size: 1.2em;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a[target="_blank"]:not(.btn):not(.button):not([class*="button"]):not([class*="btn"]):hover::after,
a[rel*="external"]:not(.btn):not(.button):not([class*="button"]):not([class*="btn"]):hover::after {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== DEFAULT BUTTON STYLING ===== */
button, 
.btn,
input[type="button"],
input[type="submit"],
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  gap: 8px;
}

/* Secondary Button */
.btn-secondary,
button.secondary,
.button-secondary {
  background-color: var(--primary);
  color: white;
}

.btn-secondary:hover,
button.secondary:hover,
.button-secondary:hover {
  background-color: #152740;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.3);
}

/* Outline Button */
.btn-outline,
button.outline,
.button-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover,
button.outline:hover,
.button-outline:hover {
  background-color: var(--accent);
  color: white;
}

/* Warning Button */
.btn-warning,
button.warning,
.button-warning {
  background-color: var(--warning);
  color: var(--primary);
}

.btn-warning:hover,
button.warning:hover,
.button-warning:hover {
  background-color: #d4a60a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

/* ===== TOGGLE BUTTON OVERRIDE ===== */
button.btn-square {
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

/* ===== SPEAKERS SECTION STYLING ===== */

.speakers {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f5 100%);
  /* alternative */
  background: var(--primary);
  display: none;
}

.speakers-title {
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
  color: var(--primary);
  /* alternative */
  color: white !important
}

.speakers-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.speakers-slider {
  scroll-behavior: smooth;
  padding-bottom: 12px;
}

.speakers-slider::-webkit-scrollbar {
  height: 8px;
}

.speakers-slider::-webkit-scrollbar-track {
  background: #e5e7eb;
  background: #6b7280;
  border-radius: 10px;
}

.speakers-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  background: #6b7280;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.speakers-slider::-webkit-scrollbar-thumb:hover {
  background: #2a9a5a;
}

.speaker {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  min-width: 15rem;
}

.speaker-img {
  transition: transform 0.3s ease;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: none !important;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: auto;
}

.speaker:hover .speaker-img {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.speaker-information {
  padding: 16px;
}

.speaker-name {
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-weight: 700;
  font-size: 1rem;
  /* alt */
  color: white;
}

.speaker:hover .speaker-name {
  color: var(--accent);
}

.speaker-affiliation {
  color: var(--warning);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .speakers-title::after {
    width: 100%;
  }

  .speaker-name {
    font-size: 1.25rem !important;
  }

  .speaker-affiliation {
    font-size: 0.875rem !important;
  }
}

/* Custom scrollbar for Firefox */
.speakers-slider {
  scrollbar-color: var(--accent) #e5e7eb;
  scrollbar-width: thin;
}

/* ===== SPEAKER TYPE DIFFERENTIATION ===== */
/* Keynote Speaker Section */
.speakers-keynote {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.03) 0%, rgba(59, 178, 115, 0.02) 100%);
  border-top: 4px solid var(--primary);
  padding-top: 40px;
  margin-bottom: 20px;
}

.speakers-keynote .speakers-title {
  position: relative;
  padding-left: 20px;
}

.speakers-keynote .speakers-title::before {
  content: '★';
  position: absolute;
  left: -5px;
  font-size: 1.5rem;
  color: var(--warning);
  animation: pulse 2s ease-in-out infinite;
}

.speakers-keynote .speakers-title::after {
  background: linear-gradient(90deg, var(--warning) 0%, var(--accent) 100%);
}

/* Plenary Speaker Section */
.speakers-plenary {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.02) 0%, rgba(59, 178, 115, 0.03) 100%);
  border-top: 4px solid var(--accent);
  padding-top: 40px;
  margin-bottom: 20px;
}

.speakers-plenary .speakers-title {
  position: relative;
  padding-left: 20px;
}

.speakers-plenary .speakers-title::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: var(--accent);
  animation: float 3s ease-in-out infinite;
}

.speakers-plenary .speakers-title::after {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

/* Badge styling for speaker types */
.speaker-type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.speaker-keynote-badge {
  background-color: rgba(234, 179, 8, 0.2);
  color: var(--warning);
  border: 1px solid var(--warning);
}

.speaker-plenary-badge {
  background-color: rgba(59, 178, 115, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .speakers-keynote,
  .speakers-plenary {
    padding-top: 30px;
  }

  .speakers-keynote .speakers-title::before,
  .speakers-plenary .speakers-title::before {
    font-size: 1rem;
  }
}

/* ===== FORM ELEMENTS STYLING ===== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--silver);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--primary);
  background-color: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 178, 115, 0.1);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-accent {
  border-color: var(--accent) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== SECTION STYLING ===== */
section {
  padding: 40px 20px;
}

/* section:nth-child(even) {
  background-color: #f3f4f6;
} */

section:nth-child(odd) {
  background-color: white;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
  .speakers-title::after {
    width: 100%;
  }

  .speaker-name {
    font-size: 1.25rem !important;
  }

  .speaker-affiliation {
    font-size: 0.875rem !important;
  }
}

/* ===== HIGHLIGHT & ACCENT STYLING ===== */
.highlight {
  background: linear-gradient(120deg, var(--warning) 0%, #f5c50a 100%);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.badge-warning {
  display: inline-block;
  background-color: var(--warning);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accent-line {
  position: relative;
  padding-left: 16px;
}

.accent-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--warning) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.important-date {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(59, 178, 115, 0.05) 100%);
  border-left: 4px solid var(--warning);
  padding: 20px;
  border-radius: 8px;
  margin: 15px 0;
}

.important-date strong {
  color: var(--warning);
  font-size: 1.1rem;
}

/* ===== SPEAKERS GRID SECTION (No Slider) ===== */
.speakers-grid-container {
  width: 100%;
  padding: 100px 20px;
  /* alt */
  background-color: var(--primary);
}

.speakers-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.speakers-grid-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  /* alt */
    color: white !important;
}

.speakers-grid-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.speaker-grid-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.speaker-grid-card:hover {
  transform: translateY(-8px);
}

.speaker-grid-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.speaker-grid-card:hover .speaker-grid-image {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.speaker-grid-info {
  padding: 0 12px;
}

.speaker-grid-name {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  line-height: 1.4;
  color: white;
}

.speaker-grid-card:hover .speaker-grid-name {
  color: var(--accent);
}

.speaker-grid-affiliation {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: white;
}

/* Responsive speakers grid */
@media (max-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .speakers-grid-container {
    padding: 30px 20px;
  }

  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .speakers-grid-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .speakers-grid-title::after {
    width: 100%;
  }

  .speaker-grid-image {
    width: 160px;
    height: 160px;
  }

  .speaker-grid-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .speaker-grid-image {
    width: 120px;
    height: 120px;
  }

  .speaker-grid-name {
    font-size: 0.9rem;
  }

  .speaker-grid-affiliation {
    font-size: 0.85rem;
  }
}

/* ===== PARTNERS & SPONSORS SECTION ===== */
.partners-sponsors {
  background: white;
  padding: 80px 20px;
  margin-bottom: 0;
  /* alt */
    background-color: var(--primary);
}

.partners-sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--warning) 100%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 20px;
}

.partners-grid,
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
  justify-items: center;
}

.partner-item,
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  /* background: #f9fafb; */
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 160px;
}

.partner-item img,
.sponsor-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-item:hover img,
.sponsor-item:hover img {
  filter: grayscale(0%);
}

.partner-name,
.sponsor-name {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  /* display: none; */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-item:hover .partner-name,
.sponsor-item:hover .sponsor-name {
  /* display: block; */
  opacity: 1;
}


/* Responsive */
@media (max-width: 768px) {
  .partners-sponsors {
    padding: 50px 20px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .partners-grid,
  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }

  .partner-item,
  .sponsor-item {
    padding: 20px;
    min-height: 120px;
  }
}

/* ===== FOOTER STYLING ===== */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, #132d47 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 0 !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}

.footer-social-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social a:hover {
  background-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(59, 178, 115, 0.3);
}

/* Special styling for Instagram links */
.footer-instagram-link {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  padding: 4px 8px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  color: white !important;
  text-decoration: none !important;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-instagram-link:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4) !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  flex: 1;
}

.footer-legal-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-cta-button {
  background-color: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;

  border-radius: 50px;
    border: 2px solid #eab308;
    background: none;
    color: #eab308;
    font-weight: 600;
    margin: 12px 0;
}

.footer-cta-button:hover {
  background-color: #2a9a5a;
  transform: translateY(-2px);
}

/* Footer responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
  }
}
