/* =========================================
   1. SETUP, VARIABLES & RESET
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  /* --- COLOR PALETTE --- */
  --bg-body: #f4f6f8;
  --bg-white: #ffffff;
  --primary: #003366;
  --primary-dark: #001f3f;
  --accent: #d32f2f;
  --accent-hover: #b71c1c;
  --text-main: #102a43;
  --text-muted: #627d98;
  --border-light: #d9e2ec;

  /* --- SHADOWS & BORDERS --- */
  --shadow-soft: 0 10px 30px -5px rgba(0, 51, 102, 0.1);
  --shadow-hover: 0 20px 40px -5px rgba(211, 47, 47, 0.2);

  /* --- TYPOGRAPHY & TRANSITIONS --- */
  --font-main: "Plus Jakarta Sans", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

/* --- RESPONSIVE TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}
p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #555;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
::selection {
  background: var(--primary);
  color: #fff;
}

/* =========================================
   2. UTILITIES & BUTTONS
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 60px 0;
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}

/* Standard Buttons */
.btn,
.btn-navy,
.btn-outline,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn,
.nav-btn {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}
.btn:hover,
.nav-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.btn-navy {
  background: var(--primary);
  color: #fff;
  margin-left: 10px;
}
.btn-navy:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover,
.btn-outline.active {
  background: var(--primary);
  color: #fff;
}

/* =========================================
   3. HEADER & NAVIGATION (DESKTOP)
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  height: 80px;
  padding: 0;
  transition: 0.3s;
}

header .container {
  height: 100%;
  width: 100%;
  max-width: 100% !important;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* LOGO */
.logo {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
  margin-left: auto;
}
.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:not(.nav-btn)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transform: skewX(-20deg);
  border-radius: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}

.nav-links a.active:not(.nav-btn) {
  color: #ffffff !important;
}
.nav-links a.active:not(.nav-btn)::before {
  opacity: 1;
}
.nav-links a:hover:not(.active):not(.nav-btn) {
  color: var(--primary);
}
.nav-links a:hover:not(.active):not(.nav-btn)::before {
  opacity: 0.08;
  background-color: var(--text-muted);
}

.nav-links .nav-btn {
  height: auto !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  margin-left: 15px;
  transform: skewX(0) !important;
}
.nav-links .nav-btn::before {
  display: none !important;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* =========================================
   4. LAYOUT GRIDS & SECTIONS
   ========================================= */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 244, 248, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--primary);
  border: 5px solid #fff;
}

.hero-modern {
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.5)),
    url("../images/bg2.jpg") center/cover fixed;
}
.hero-modern h1 {
  color: #fff;
}

.hero-mini {
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)),
    url("../images/bg1.jpg") center/cover;
}
.hero-mini h1 {
  color: #fff;
  margin-bottom: 10px;
}
.hero-mini p {
  color: rgba(255, 255, 255, 0.8);
}

/* Grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* =========================================
   4B. COMPONENTS, BOXES & FILTERS
   ========================================= */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-muted);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

.why-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.why-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.why-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 51, 102, 0.1);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}
.why-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.value-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0, 51, 102, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--border-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 4px solid var(--accent);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.left {
  left: 0;
  text-align: right;
}
.right {
  left: 50%;
  text-align: left;
}
.right::after {
  left: -10px;
}
.timeline-content {
  padding: 20px 30px;
  background-color: #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--primary);
}

.corporate-card {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 51, 102, 0.3);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(211, 47, 47, 0.4) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
}
.card-content {
  position: relative;
  z-index: 2;
}
.office-loc {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.office-loc:last-child {
  border-bottom: none;
}
.loc-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.loc-text h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.loc-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}
.legal-badge-group {
  display: flex;
  gap: 15px;
  margin-top: auto;
}
.legal-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 8px;
  font-family: monospace;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.legal-badge span {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.legal-badge strong {
  letter-spacing: 1px;
  color: #fff;
  font-size: 1rem;
}
.verified-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(46, 213, 115, 0.4);
}

.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent);
}
.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  border-top: 4px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--accent);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 25px;
}

/* =========================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1250px) {
  header .container {
    padding: 0 20px;
  }
  .nav-links a {
    padding: 0 12px;
    font-size: 0.85rem;
  }
  .nav-links .nav-btn {
    padding: 8px 18px !important;
    margin-left: 10px;
    font-size: 0.85rem !important;
  }
  .logo {
    font-size: 1rem;
    gap: 8px;
  }
  .lang-switch-container {
    margin-left: 10px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }
  header {
    height: 70px;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SIDEBAR MOBILE */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    height: auto;
    width: 100%;
    display: block;
    margin-bottom: 5px;
  }

  /* Reset Button ke Kotak */
  .nav-links a:not(.nav-btn) {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 0;
    white-space: normal;
  }
  .nav-links a:not(.nav-btn)::before {
    display: none;
  }
  .nav-links a.active:not(.nav-btn) {
    color: var(--accent) !important;
    background: rgba(211, 47, 47, 0.08);
  }
  .nav-links .nav-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
    display: block;
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 0 15px;
  }
  .logo {
    font-size: 1rem;
    gap: 8px;
    white-space: normal;
    line-height: 1.1;
  }
  .logo img {
    height: 32px;
  }

  /* --- OVERRIDE INLINE CSS YANG MEMBUAT TAMPILAN RUSAK --- */
  section[style*="padding: 100px"],
  section[style*="padding: 90px"] {
    padding: 50px 20px !important;
  }
  div[style*="justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  p[style*="max-width: 600px"],
  p[style*="max-width: 650px"] {
    max-width: 100% !important;
  }

  /* Paksa Semua Jenis Grid Menjadi 1 Kolom ke Bawah */
  .hero-wrapper,
  .services-grid,
  .values-grid,
  .project-gallery,
  .contact-wrapper,
  .intro-grid,
  .form-grid,
  .job-grid,
  .input-group-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Filter Portfolio Mobile */
  .filter-container {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .filter-btn {
    width: 100%;
    margin: 5px 0;
  }

  /* Form Lowongan Mobile */
  .form-section-wrapper {
    padding: 25px 15px !important;
    margin-top: 40px !important;
  }
  .cta-card {
    padding: 25px !important;
  }

  /* Hero Sections Mobile */
  .hero-modern {
    background-attachment: scroll;
    text-align: center;
    padding: 40px 0;
  }
  .hero-image {
    display: none !important;
  }
  .hero::before {
    display: none;
  }
  .section-padding {
    padding: 40px 0;
  }
  .hero-mini {
    padding: 60px 20px !important;
  }

  /* Swiper Slider Mobile */
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  /* Timeline & Footer Mobile */
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    text-align: left;
  }
  .timeline-item::after {
    left: 10px;
    right: auto;
  }
  .left,
  .right {
    left: 0;
  }
  footer .services-grid {
    text-align: center;
  }
  .corporate-card {
    padding: 25px;
    min-height: auto;
  }
  .legal-badge-group {
    flex-direction: column;
  }
}

/* --- EKSTREM MOBILE FIXES (< 400px & < 320px) --- */
@media (max-width: 400px) {
  /* Hilangkan Teks Nama Perusahaan, Sisakan Logonya saja agar tidak menabrak Hamburger */
  .logo {
    font-size: 0 !important;
    gap: 0 !important;
  }
  .logo img {
    height: 28px !important;
    margin-right: auto;
  }

  .contact-form,
  .form-section-wrapper {
    padding: 20px 15px !important;
  }
  .btn,
  .btn-primary-form,
  .form-control {
    font-size: 0.85rem !important;
    padding: 10px 15px !important;
    white-space: normal !important; /* Izinkan teks tombol (ex: WhatsApp) turun baris */
    line-height: 1.3 !important;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px !important;
  }
  header .container {
    padding: 0 10px !important;
  }

  .contact-form,
  .form-section-wrapper,
  .cta-card {
    padding: 15px 10px !important;
  }
  .form-label {
    font-size: 0.8rem !important;
  }
  .form-control {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
  }

  .btn {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
  }
  .hamburger {
    font-size: 1.5rem !important;
  }

  #backToTop {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
    bottom: 15px !important;
    right: 15px !important;
  }
}

/* =========================================
   7. EXTRA COMPONENTS (FOOTER, CARDS, OTHERS)
   ========================================= */

/* Contact Cards & Maps */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  transition: 0.3s;
  background: #f9f9f9;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  min-height: 350px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 5px solid #fff;
}

/* Visual Cards */
.project-card-visual {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.project-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  transform: translateY(0);
  transition: 0.4s;
}
.project-tag {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

/* Modern Project Cards */
.project-card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 380px;
  box-shadow: var(--shadow-soft);
}
.card-image-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.card-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
}
.card-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff6b6b;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.card-title {
  font-size: 1.3rem;
  margin: 0 0 5px 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 80px 0 30px;
  margin-top: 0;
}
.footer-logo-img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-info h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}
.footer-info p,
.footer-info li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}
.footer-info ul li i {
  color: var(--accent);
  margin-right: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  z-index: 999;
  transition: var(--transition);
}
#backToTop:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* Animations & General Utilities */
.hidden {
  display: none;
}
.reveal {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 53, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(226, 53, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 53, 53, 0);
  }
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================================
   8. MARQUEE / PARTNER LOGOS ANIMATION
   ========================================= */
.marquee-container {
  overflow: hidden;
  white-space: nowrap !important;
  position: relative;
  padding: 40px 0;
  background: #fff;
  width: 100%;
}
.marquee-content {
  display: inline-block;
  white-space: nowrap !important;
  animation: marquee 35s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.partner-logo-item {
  display: inline-block !important;
  white-space: nowrap !important;
  margin: 0 35px;
  opacity: 0.6;
  transition: 0.3s;
  font-weight: 800;
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 1px;
}
.partner-logo-item:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.1);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .partner-logo-item {
    font-size: 1rem;
    margin: 0 20px;
  }
  .marquee-container {
    padding: 20px 0;
  }
}

/* =========================================
   9. GOOGLE TRANSLATE FIXES
   ========================================= */
.goog-te-banner-frame {
  display: none !important;
}
.skiptranslate {
  display: none !important;
}
body {
  top: 0 !important;
}
#google_translate_element {
  display: none;
}
