/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #585a61;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5777ba;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #5777ba;
  text-decoration: none;
}
#header .logo img {
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #47536e;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #5777ba;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #5777ba;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #748ec6;
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #5777ba;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #5777ba;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #5777ba;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: linear-gradient(145deg, #f4f7ff 0%, #ffffff 50%, #edf1fb 100%);
  display: flex;
  align-items: center;
}

/* Decorative background blobs */
#hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(87, 119, 186, 0.09) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(87, 119, 186, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Top badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.08);
  border: 1px solid rgba(87, 119, 186, 0.22);
  border-radius: 30px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 26px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5777ba;
  flex-shrink: 0;
  animation: hero-pulse 2.2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}

/* Heading */
#hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: #1b2a4a;
  font-family: "Raleway", sans-serif;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
}

#hero h1 span {
  color: #5777ba;
}

/* Description */
.hero-desc {
  font-size: 16px;
  color: #6b7a99;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 490px;
}

/* Feature tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #47536e;
  background: #ffffff;
  border: 1px solid rgba(87, 119, 186, 0.18);
  border-radius: 20px;
  padding: 7px 14px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 10px rgba(71, 83, 110, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-tags span:hover {
  border-color: rgba(87, 119, 186, 0.4);
  box-shadow: 0 4px 14px rgba(87, 119, 186, 0.12);
}

.hero-tags span i {
  font-size: 15px;
  color: #5777ba;
}

/* CTA button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #5777ba 0%, #748ec6 100%);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(87, 119, 186, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta i {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.hero-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(87, 119, 186, 0.48);
}

.hero-cta:hover i {
  transform: translateX(5px);
}

/* Image wrapper */
.hero-img-wrap {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(87, 119, 186, 0.1) 0%,
    transparent 62%
  );
  z-index: 0;
}

.hero-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(87, 119, 186, 0.22));
  animation: hero-float 5s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-img-wrap img { animation: none; }
  .hero-badge-dot    { animation: none; }
}

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
  #hero {
    padding: 100px 0 60px;
    min-height: auto;
    text-align: center;
  }

  #hero h1 {
    font-size: 36px;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-img-wrap {
    max-width: 400px;
    margin: 0 auto;
    padding: 16px;
  }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
  #hero {
    padding: 86px 0 50px;
  }

  #hero h1 {
    font-size: 28px;
    letter-spacing: -0.2px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-cta {
    font-size: 14px;
    padding: 12px 28px;
  }
}

/* ── iPhone (≤575px) ── */
@media (max-width: 575px) {
  #hero {
    padding: 76px 0 44px;
  }

  #hero h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 13px 5px 9px;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero-tags span {
    font-size: 12px;
    padding: 5px 12px;
  }

  .hero-img-wrap {
    max-width: 290px;
    padding: 12px;
  }

  .hero-img-wrap img {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h1 {
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5777ba;
  font-family: "Poppins", sans-serif;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5777ba;
  font-family: "Poppins", sans-serif;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}
.features .content .icon-box {
  margin-top: 25px;
}
.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}
.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}
@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }
  .features .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Schedule / Jadwal Timeline
--------------------------------------------------------------*/
.jadwal-section {
  padding: 80px 0;
  background: #ffffff;
}

.jadwal-section-alt {
  background: #f7f9fd;
}

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

.jadwal-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.1);
  border: 1px solid rgba(87, 119, 186, 0.25);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
}

.jadwal-section-header h1 {
  font-size: 34px;
  font-weight: 700;
  color: #2e3d5f;
  letter-spacing: 2px;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.jadwal-section-header h1 span {
  color: #5777ba;
}

/* Sub-header (Abstrak / Full Paper) */
.jadwal-sub-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid #5777ba;
  box-shadow: 0 2px 16px rgba(71, 83, 110, 0.08);
}

.jadwal-section-alt .jadwal-sub-header {
  background: #fff;
}

.jadwal-sub-header-gap {
  margin-top: 56px;
}

.jadwal-sub-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(87, 119, 186, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jadwal-sub-icon i {
  font-size: 22px;
  color: #5777ba;
}

.jadwal-sub-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2e3d5f;
  margin: 0 0 6px;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
}

.jadwal-sub-header p {
  font-size: 14px;
  color: #6b7a99;
  margin: 0;
  line-height: 1.7;
}

/* Timeline wrapper */
.jadwal-tl-wrap {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding-left: 28px;
}

.jadwal-tl-wrap::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #5777ba 0%,
    rgba(87, 119, 186, 0.15) 100%
  );
  border-radius: 2px;
}

/* Each timeline item */
.jadwal-tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.jadwal-tl-item:last-child {
  margin-bottom: 0;
}

/* Numbered node */
.jadwal-tl-node {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #5777ba;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px rgba(87, 119, 186, 0.3),
    0 4px 12px rgba(87, 119, 186, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.jadwal-tl-node span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

/* Card */
.jadwal-tl-card {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 16px rgba(71, 83, 110, 0.07);
  border: 1px solid rgba(87, 119, 186, 0.1);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  margin-top: -2px;
}

.jadwal-section-alt .jadwal-tl-card {
  background: #fff;
}

.jadwal-tl-item:hover .jadwal-tl-node {
  transform: scale(1.1);
  box-shadow:
    0 0 0 3px rgba(87, 119, 186, 0.3),
    0 6px 18px rgba(87, 119, 186, 0.3);
}

.jadwal-tl-item:hover .jadwal-tl-card {
  box-shadow: 0 6px 28px rgba(71, 83, 110, 0.13);
  transform: translateX(4px);
}

/* Date badge */
.jadwal-tl-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.08);
  border: 1px solid rgba(87, 119, 186, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.jadwal-tl-date i {
  font-size: 14px;
}

.jadwal-tl-body {
  padding: 0;
}

.jadwal-tl-name {
  font-size: 15px;
  color: #2e3d5f;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.jadwal-tl-biaya {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5777ba, #748ec6);
  border-radius: 20px;
  padding: 3px 14px;
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
}

.jadwal-tl-info {
  font-size: 13px;
  color: #6b7a99;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(87, 119, 186, 0.1);
  line-height: 1.6;
}

@media (max-width: 575px) {
  .jadwal-section {
    padding: 60px 0;
  }
  .jadwal-section-header h1 {
    font-size: 26px;
  }
  .jadwal-tl-wrap {
    padding-left: 16px;
  }
  .jadwal-tl-wrap::before {
    left: 15px;
  }
  .jadwal-tl-node {
    width: 34px;
    height: 34px;
    margin-left: -4px;
  }
  .jadwal-tl-card {
    padding: 14px 16px;
  }
  .jadwal-sub-header {
    flex-direction: column;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}
.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}
.details .content ul {
  list-style: none;
  padding: 0;
}
.details .content ul li {
  padding-bottom: 10px;
}
.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0;
}
.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Kompetisi / Tentang Lomba
--------------------------------------------------------------*/
.kompetisi-section {
  padding: 90px 0;
  background: #ffffff;
}

.kompetisi-sec-header {
  text-align: center;
  margin-bottom: 64px;
}

.kompetisi-chip-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.1);
  border: 1px solid rgba(87, 119, 186, 0.25);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
}

.kompetisi-sec-header h1 {
  font-size: 34px;
  font-weight: 700;
  color: #2e3d5f;
  letter-spacing: 2px;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.kompetisi-sec-header h1 span {
  color: #5777ba;
}

/* Block divider */
.kompetisi-sep {
  max-width: 560px;
  margin: 70px auto;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(87, 119, 186, 0.25),
    transparent
  );
}

/* Image wrapper */
.kompetisi-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px;
}

.kompetisi-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(87, 119, 186, 0.1) 0%,
    transparent 68%
  );
  z-index: 0;
}

.kompetisi-img-wrap img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(87, 119, 186, 0.18));
  transition:
    filter 0.3s ease,
    transform 0.35s ease;
}

.kompetisi-img-wrap:hover img {
  filter: drop-shadow(0 16px 36px rgba(87, 119, 186, 0.28));
  transform: translateY(-4px);
}

/* Content */
.kompetisi-content {
  padding: 8px 0;
}

.kompetisi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.08);
  border: 1px solid rgba(87, 119, 186, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.kompetisi-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2e3d5f;
  margin-bottom: 16px;
  font-family: "Raleway", sans-serif;
  line-height: 1.3;
}

.kompetisi-content h2 em {
  color: #5777ba;
  font-style: normal;
}

/* Tema blockquote-style box */
.kompetisi-tema-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(87, 119, 186, 0.05);
  border-left: 3px solid #5777ba;
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  margin-bottom: 18px;
}

.kompetisi-tema-box i {
  font-size: 20px;
  color: #5777ba;
  flex-shrink: 0;
  margin-top: 2px;
}

.kompetisi-tema-box span {
  font-size: 14px;
  color: #47536e;
  line-height: 1.65;
  font-family: "Poppins", sans-serif;
}

/* Description */
.kompetisi-desc {
  font-size: 15px;
  color: #6b7a99;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Alur flow */
.kompetisi-alur {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.kompetisi-alur span {
  font-size: 12px;
  font-weight: 600;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.08);
  border: 1px solid rgba(87, 119, 186, 0.22);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.kompetisi-alur i {
  font-size: 20px;
  color: rgba(87, 119, 186, 0.35);
}

/* Info grid: Sub Tema + Fasilitas */
.kompetisi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.kig-block {
  background: #f7f9fd;
  border: 1px solid rgba(87, 119, 186, 0.1);
  border-radius: 12px;
  padding: 16px;
}

.kig-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #2e3d5f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.kig-header i {
  font-size: 16px;
  color: #5777ba;
}

.kig-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kig-chips span {
  font-size: 12px;
  color: #47536e;
  background: #ffffff;
  border: 1px solid rgba(87, 119, 186, 0.2);
  border-radius: 14px;
  padding: 3px 10px;
  font-family: "Poppins", sans-serif;
}

.kig-flist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kig-flist div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #47536e;
  line-height: 1.45;
}

.kig-flist div i {
  font-size: 16px;
  color: #5777ba;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Award block */
.kompetisi-award-block {
  margin-bottom: 28px;
}

.kab-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #2e3d5f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.kab-header i {
  font-size: 17px;
  color: #5777ba;
}

.kab-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 9px;
  background: #f7f9fd;
  border: 1px solid rgba(87, 119, 186, 0.08);
}

.kab-item::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5cedf;
}

.kab-item.kab-gold::before {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.kab-item.kab-silver::before {
  background: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2);
}

.kab-item.kab-bronze::before {
  background: #cd7f32;
  box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.15);
}

.kab-rank {
  font-size: 13px;
  font-weight: 700;
  color: #2e3d5f;
  min-width: 100px;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.kab-prize {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.4;
}

/* Action buttons */
.kompetisi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px 22px;
  border-radius: 30px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.kbtn i {
  font-size: 17px;
}

.kbtn-outline {
  color: #5777ba;
  border: 2px solid #5777ba;
  background: transparent;
}

.kbtn-outline:hover {
  background: #5777ba;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(87, 119, 186, 0.3);
}

.kbtn-success {
  color: #ffffff;
  background: #27ae60;
  border: 2px solid #27ae60;
}

.kbtn-success:hover {
  background: #219a52;
  border-color: #219a52;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(39, 174, 96, 0.3);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .kompetisi-section {
    padding: 70px 0;
  }

  .kompetisi-content h2 {
    font-size: 26px;
  }

  .kompetisi-img-wrap {
    max-width: 320px;
    margin: 0 auto 8px;
  }

  .kompetisi-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .kompetisi-sec-header h1 {
    font-size: 26px;
  }

  .kompetisi-content h2 {
    font-size: 22px;
  }

  .kompetisi-img-wrap {
    max-width: 260px;
  }

  .kompetisi-info-grid {
    grid-template-columns: 1fr;
  }

  .kompetisi-sep {
    margin: 50px auto;
  }
}

@media (max-width: 575px) {
  .kompetisi-section {
    padding: 56px 0;
  }

  .kompetisi-sec-header {
    margin-bottom: 44px;
  }

  .kompetisi-sec-header h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .kompetisi-tag {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .kompetisi-alur span {
    font-size: 11px;
    padding: 4px 10px;
  }

  .kab-rank {
    min-width: 80px;
    font-size: 12px;
  }

  .kab-prize {
    font-size: 12px;
  }

  .kbtn {
    font-size: 13px;
    padding: 9px 18px;
  }
}

/*--------------------------------------------------------------
# Gallery Premium
--------------------------------------------------------------*/
.gallery-premium {
  background: linear-gradient(160deg, #eef2fb 0%, #f2f5fa 60%, #e8ecf5 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  position: relative;
}

.gallery-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(87, 119, 186, 0.07);
  pointer-events: none;
}

.gallery-premium::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(87, 119, 186, 0.06);
  pointer-events: none;
}

.gallery-premium-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.gallery-premium-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5777ba;
  background: rgba(87, 119, 186, 0.1);
  border: 1px solid rgba(87, 119, 186, 0.25);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 18px;
}

.gallery-premium-header h1 {
  font-size: 38px;
  font-weight: 700;
  color: #2e3d5f;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-family: "Raleway", sans-serif;
}

.gallery-premium-header h1 span {
  color: #5777ba;
}

.gallery-premium-header p {
  color: #6b7a99;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.gallery-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
  padding: 0 40px;
  max-width: 1300px;
  margin: 0 auto;
}

/* tall = spans 2 rows */
.gallery-item-tall {
  grid-row: span 2;
}

/* wide = spans 2 columns */
.gallery-item-wide {
  grid-column: span 2;
}

/* Layout map:
   Col:  1         2         3         4
   Row1: item1(T)  item2(W──────)  item3
   Row2: item1(T)  item4     item5(W──────)  item6(T)
   But item6 is tall so needs adjustment */

/* Explicit placement for clean bento layout */
.gallery-premium-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-premium-item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1;
}
.gallery-premium-item:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}
.gallery-premium-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.gallery-premium-item:nth-child(5) {
  grid-column: 3 / 5;
  grid-row: 2;
}
.gallery-premium-item:nth-child(6) {
  display: none;
}

.gallery-premium-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #dde3f0;
  box-shadow: 0 4px 20px rgba(71, 83, 110, 0.1);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.gallery-premium-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-premium-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(87, 119, 186, 0.05) 0%,
    rgba(46, 61, 95, 0.65) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-premium-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-premium-icon i {
  font-size: 20px;
  color: #5777ba;
}

.gallery-premium-item:hover {
  box-shadow: 0 12px 40px rgba(71, 83, 110, 0.2);
  transform: translateY(-3px);
}

.gallery-premium-item:hover .gallery-premium-link img {
  transform: scale(1.07);
}

.gallery-premium-item:hover .gallery-premium-overlay {
  opacity: 1;
}

.gallery-premium-item:hover .gallery-premium-icon {
  transform: scale(1);
}

/* Accent border on hover */
.gallery-premium-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-premium-item:hover::before {
  border-color: rgba(87, 119, 186, 0.4);
}

@media (max-width: 991px) {
  .gallery-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    padding: 0 20px;
    gap: 8px;
  }
  .gallery-premium-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .gallery-premium-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .gallery-premium-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .gallery-premium-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .gallery-premium-item:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3;
  }
  .gallery-premium-item:nth-child(6) {
    display: none;
  }

  .gallery-premium-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .gallery-premium-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
    padding: 0 16px;
  }
  .gallery-premium-item,
  .gallery-premium-item:nth-child(1),
  .gallery-premium-item:nth-child(2),
  .gallery-premium-item:nth-child(3),
  .gallery-premium-item:nth-child(4),
  .gallery-premium-item:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
  }
  .gallery-premium-item:nth-child(6) {
    display: none;
  }
  .gallery-premium-header h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e8ecf5;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5777ba;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5777ba;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}
.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}
.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}
.pricing h4 {
  font-size: 46px;
  color: #5777ba;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding-bottom: 12px;
}
.pricing ul i {
  color: #5777ba;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .get-started-btn {
  background: #47536e;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}
.pricing .get-started-btn:hover {
  background: #5777ba;
}
.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}
.pricing .featured .get-started-btn {
  background: #5777ba;
}
.pricing .featured .get-started-btn:hover {
  background: #748ec6;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0 100px;
}
.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}
.faq .accordion-list li + li {
  margin-top: 15px;
}
.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}
.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .accordion-list .icon-show {
  display: none;
}
.faq .accordion-list a.collapsed {
  color: #343a40;
}
.faq .accordion-list a.collapsed:hover {
  color: #5777ba;
}
.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .accordion-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
}
.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  font-size: 15px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #8a8c95;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5777ba;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #5777ba;
  padding: 10px 24px;
  color: #5777ba;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #5777ba;
  color: #fff;
}
@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:
    linear-gradient(90deg, transparent, #5777ba 40%, #748ec6 60%, transparent) top / 100% 3px no-repeat,
    linear-gradient(180deg, #16273f 0%, #0e1c2e 100%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-body {
  padding: 80px 0 64px;
}

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

.footer-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #748ec6;
  background: rgba(116, 142, 198, 0.1);
  border: 1px solid rgba(116, 142, 198, 0.2);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.footer-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.footer-header h2 span {
  color: #748ec6;
}

.footer-contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fcc-block {
  padding: 20px 0;
}

.fcc-block:first-child {
  padding-top: 0;
}

.fcc-block--sponsor {
  padding-bottom: 0;
}

.fcc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.fcc-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.fcc-section-label i {
  font-size: 15px;
  color: #5777ba;
  flex-shrink: 0;
}

.fcc-section-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #748ec6;
  font-family: "Poppins", sans-serif;
}

.fcc-org {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 4px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.fcc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.7;
}

.fcc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fcc-contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.fcc-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  min-width: 0;
}

.fcc-phone {
  font-size: 12.5px;
  font-weight: 600;
  color: #748ec6;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.fcc-phone:hover {
  color: #ffffff;
}

.fcc-sponsor-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
}

.fcc-sponsor-badge img {
  height: 38px;
}

.footer-map {
  height: 100%;
  min-height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Poppins", sans-serif;
}

.footer-bottom-inner strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner a {
  color: #748ec6;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-inner a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-body {
    padding: 60px 0 48px;
  }

  .footer-map {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .footer-header h2 {
    font-size: 26px;
  }

  .footer-map {
    min-height: 260px;
    height: 260px;
  }

  .fcc-contact-row {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 575px) {
  .footer-body {
    padding: 50px 0 40px;
  }

  .footer-header {
    margin-bottom: 44px;
  }

  .footer-header h2 {
    font-size: 22px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}
