/* ============================================================
   GOLDEN TOUCH DELIVERY – BUSINESS PARTNERSHIP PAGE STYLES
   ============================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a623, #e8860a);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.5);
}

/* ---- SECTION COMMON ---- */
.section-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: #c47f00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: #f5a623;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link--cta {
  background: linear-gradient(135deg, #f5a623, #e8860a);
  color: #000 !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.3);
}
.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
  background: linear-gradient(135deg, #f5a623, #e8860a) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 20px 20px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 12px 16px; font-size: 15px; }
.mobile-menu .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0800 50%, #1a0f00 100%);
  padding: 130px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { border-color: rgba(245, 166, 35, 0.45); }
  50%       { border-color: rgba(245, 166, 35, 0.9); box-shadow: 0 0 18px rgba(245,166,35,0.25); }
}

.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title-gold {
  background: linear-gradient(135deg, #f5a623, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-sub {
  font-size: 17px;
  color: #999;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-hero-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
}

/* ============================================================
   WHY PARTNER STRIP
   ============================================================ */
.why-strip {
  background: #fff;
  border-bottom: 1px solid #eaecf0;
}

.why-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.why-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
}

.why-icon {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img{
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.why-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
}

.why-text span {
  font-size: 12px;
  color: #8d8d8d;
  line-height: 1.5;
}

.why-divider {
  width: 1px;
  height: 40px;
  background: #eaecf0;
  flex-shrink: 0;
}

/* ============================================================
   APPLICATION SECTION
   ============================================================ */
.apply-section {
  padding: 80px 40px 100px;
  background: #f9fafb;
}

.apply-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- SIDEBAR ---- */
.apply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(245, 166, 35, 0.15);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-icon { font-size: 24px; }

.sidebar-card-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sidebar-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-step:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
  min-width: 36px;
  flex-shrink: 0;
}

.sidebar-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar-step-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.sidebar-step-text span {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* Contact */
.sidebar-contact {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.sidebar-contact-label {
  font-size: 12px;
  color: #8d8d8d;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 8px;
}
.sidebar-phone img {
  filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(1);
}

.sidebar-contact-note {
  font-size: 11px;
  color: #aaa;
}

/* Services list */
.sidebar-services {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 24px;
}

.sidebar-services h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.sidebar-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sidebar-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #364254;
  font-weight: 500;
}

.sidebar-services img {
  filter: invert(35%) sepia(80%) saturate(400%) hue-rotate(5deg) brightness(0.9);
  flex-shrink: 0;
}

/* ---- FORM WRAP ---- */
.apply-form-wrap {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.apply-form-header {
  background: #0a0a0a;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.apply-form-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.apply-form-header p {
  font-size: 13px;
  color: #666;
}

.req-star { color: #f5a623; font-weight: 700; }

/* ---- FORM ---- */
.apply-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c47f00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(245,166,35,0.15);
}

.form-divider {
  height: 1px;
  background: #eaecf0;
  margin: 4px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #364254;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  background: #f9fafb;
  border: 1.5px solid #eaecf0;
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-input::placeholder { color: #aaa; }

.form-input:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
  background: #fff;
}

.form-input-with-icon { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(55%) sepia(10%) saturate(300%);
  pointer-events: none;
  display: block;
}
.form-input--icon { padding-left: 40px; }

.form-select-wrap { position: relative; }
.form-select { cursor: pointer; padding-right: 40px; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: invert(55%) sepia(10%) saturate(300%);
}
.form-select option { background: #fff; color: #1a1a1a; }

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #eaecf0;
  padding-top: 28px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8d8d8d;
  line-height: 1.5;
  max-width: 300px;
}

.form-privacy img {
  filter: invert(35%) sepia(80%) saturate(400%) hue-rotate(5deg) brightness(0.9);
  flex-shrink: 0;
}

.btn-submit {
  flex-shrink: 0;
  font-size: 15px;
  padding: 14px 36px;
}

.btn-arrow {
  filter: brightness(0);
  transform: rotate(-90deg);
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(3, 120, 71, 0.08);
  border: 1.5px solid rgba(3, 120, 71, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 4px;
}

.form-success img {
  filter: invert(35%) sepia(80%) saturate(400%) hue-rotate(100deg) brightness(0.9);
  flex-shrink: 0;
}

.form-success div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-success strong {
  font-size: 15px;
  font-weight: 700;
  color: #037847;
}

.form-success span {
  font-size: 13px;
  color: #4a9e72;
}

.form-success.visible { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

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

.footer-nav a {
  font-size: 14px;
  color: #8d8d8d;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #f5a623; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: #555; }

.footer-hashtags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-hashtags span {
  font-size: 12px;
  color: #444;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .apply-inner { grid-template-columns: 280px 1fr; gap: 28px; }
  .page-hero-title { font-size: 42px; }
  .why-strip-inner { padding: 0 24px; }
  .why-item { padding: 24px 16px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
  .navbar-inner { padding: 0 20px; }

  .page-hero { padding: 110px 24px 64px; }
  .page-hero-title { font-size: 36px; }
  .page-hero-sub { font-size: 15px; }

  .why-strip-inner {
    flex-wrap: wrap;
    padding: 0;
  }
  .why-item { min-width: 50%; padding: 20px 20px; }
  .why-divider { display: none; }

  .apply-section { padding: 48px 20px 72px; }
  .apply-inner { grid-template-columns: 1fr; }

  .apply-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-card { grid-column: 1 / -1; }

  .apply-form { padding: 28px 24px; }
  .apply-form-header { padding: 24px 28px; }

  .form-row { grid-template-columns: 1fr; }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .form-privacy { max-width: 100%; justify-content: center; }
  .btn-submit { width: 100%; justify-content: center; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-inner { padding: 0 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .page-hero-title { font-size: 30px; }
  .apply-sidebar { grid-template-columns: 1fr; }
  .apply-form { padding: 20px 16px; }
  .apply-form-header { padding: 20px; }
  .why-item { min-width: 100%; }
}

.sidebar-icon img.inverted-white {
  filter: brightness(0) invert(1);
}


.success-toast{
  position: fixed;
  top: 20px;
  right: 20px;

  background: #111;
  color: white;

  padding: 14px 20px;
  border-radius: 12px;

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;

  opacity: 0;
  transform: translateY(-20px);

  transition: 0.3s;

  z-index: 9999;

  pointer-events: none;
}

.success-toast.show{
  opacity: 1;
  transform: translateY(0);
}