@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CONFIG --- */
:root {
  --font-primary: 'Outfit', sans-serif;
  
  /* Color Palette */
  --bg-dark: #0a0a0c;
  --bg-card: #121216;
  --bg-card-hover: #181822;
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --text-muted: #6b6b76;
  
  /* Brand Gradients */
  --primary-glow: rgba(255, 69, 0, 0.15);
  --grad-primary: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
  --grad-primary-hover: linear-gradient(135deg, #ff5714 0%, #ffa62b 100%);
  --grad-dark: linear-gradient(180deg, #16161c 0%, #0a0a0c 100%);
  --grad-card: linear-gradient(145deg, rgba(25, 25, 30, 0.6) 0%, rgba(15, 15, 18, 0.6) 100%);
  
  /* Accent Colors */
  --accent-orange: #ff5f00;
  --accent-gold: #ffb703;
  --accent-red: #e63946;
  --accent-green: #2a9d8f;
  
  /* Borders and Glass */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 95, 0, 0.3);
  --glass-bg: rgba(10, 10, 12, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(10, 10, 12, 0.88), rgba(10, 10, 12, 0.88)), url('../img/body_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #25252b;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Selection */
::selection {
  background-color: var(--accent-orange);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

input, textarea, select, button {
  font-family: inherit;
  color: inherit;
  outline: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.glow-btn {
  position: relative;
  background: var(--grad-primary);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.glow-btn:hover::before {
  left: 100%;
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
  background: var(--grad-primary-hover);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Background Glowing blobs */
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(12, 12, 14, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-normal);
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.8rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent-orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 95, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.08) 0%, rgba(10, 10, 12, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(255, 140, 0, 0.05) 0%, rgba(10, 10, 12, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 69, 0, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.logo-showcase {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--bg-card);
  padding: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 69, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.logo-showcase img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.logo-glow-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 69, 0, 0.25);
  animation: spin 30s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

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

/* --- "BİZ KİMİZ" SECTION (OUR STORY) --- */
.story-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d12 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-visual-card {
  background: var(--grad-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.story-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
  filter: blur(10px);
}

.story-visual-card blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  font-weight: 300;
}

.story-visual-card blockquote::before {
  content: '“';
  font-size: 5rem;
  font-family: serif;
  color: var(--accent-orange);
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.3;
}

.story-author {
  display: flex;
  flex-direction: column;
}

.story-author span.name {
  font-weight: 700;
  color: var(--text-primary);
}

.story-author span.title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.story-title {
  margin-bottom: 2rem;
}

.story-title h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.story-body p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.promises {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: var(--transition-normal);
}

.promise-item:hover {
  background: rgba(255, 69, 0, 0.03);
  border-color: var(--border-glow);
  transform: translateX(5px);
}

.promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.promise-content h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.promise-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- SERVICES & PORTALS --- */
.services-section {
  position: relative;
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.dual-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.portal-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3.5rem;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.25);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 69, 0, 0.05);
}

.portal-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.portal-content {
  position: relative;
  z-index: 2;
}

.portal-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 69, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 69, 0, 0.15);
}

.portal-card.courier .portal-icon {
  background: rgba(255, 183, 3, 0.1);
  color: var(--accent-gold);
  border-color: rgba(255, 183, 3, 0.15);
}

.portal-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portal-desc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.portal-features {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.portal-features li i {
  color: var(--accent-orange);
}

.portal-card.courier .portal-features li i {
  color: var(--accent-gold);
}

.portal-btn {
  width: fit-content;
  z-index: 2;
}

.portal-card.courier .glow-btn {
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  box-shadow: 0 4px 15px rgba(251, 133, 0, 0.25);
}

.portal-card.courier .glow-btn:hover {
  background: linear-gradient(135deg, #ffc93c 0%, #ffb703 100%);
  box-shadow: 0 8px 25px rgba(251, 133, 0, 0.4);
}

/* --- LOGISTICS CATEGORIES (TAŞIDIĞIMIZ HİZMETLER) --- */
.logistics-types {
  padding-top: 5rem;
}

.logistics-title {
  text-align: center;
  margin-bottom: 3rem;
}

.logistics-title h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.logistics-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-normal);
}

.logistics-card:hover {
  background: rgba(255, 69, 0, 0.02);
  border-color: rgba(255, 69, 0, 0.15);
  transform: translateY(-5px);
}

.logistics-card-icon {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.logistics-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.logistics-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- INTEGRATIONS SECTION --- */
.integrations-section {
  background: linear-gradient(180deg, #0d0d12 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.integrations-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.integrations-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.integrations-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.integration-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.integration-pill i {
  color: var(--accent-orange);
}

.integrations-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.integration-hub {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--accent-orange);
  z-index: 3;
}

.integration-hub i {
  font-size: 2.5rem;
  color: #fff;
}

.integration-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--glass-shadow);
  z-index: 2;
  transition: var(--transition-normal);
}

.integration-node:hover {
  border-color: var(--accent-orange);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.integration-node.node-1 { transform: translate(-140px, -80px); }
.integration-node.node-2 { transform: translate(140px, -80px); }
.integration-node.node-3 { transform: translate(-140px, 80px); }
.integration-node.node-4 { transform: translate(140px, 80px); }
.integration-node.node-5 { transform: translate(0px, -150px); }
.integration-node.node-6 { transform: translate(0px, 150px); }

/* SVG Connecting lines mapping behind */
.integration-svg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.integration-svg-lines line {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

/* --- PARTNERS CAROUSEL --- */
.partners-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.005);
  overflow: hidden;
}

.partners-slider {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 3rem;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll-partners 25s linear infinite;
  white-space: nowrap;
}

.partner-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  color: var(--text-primary);
}

.partner-logo i {
  font-size: 1.6rem;
  color: var(--accent-orange);
}

@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- APPLICATION & CONTACT SECTION --- */
.apply-section {
  position: relative;
  background-color: var(--bg-dark);
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.apply-info h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.apply-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.contact-text h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.contact-text p {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--text-primary);
}

.apply-panel {
  background: var(--grad-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  position: relative;
}

.apply-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 24px 24px 0 0;
}

.tab-nav {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.15);
  background: rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-orange);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 300px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left-color: var(--accent-green);
}

.toast.error {
  border-left-color: var(--accent-red);
}

.toast-icon {
  font-size: 1.2rem;
}

.toast.success .toast-icon { color: var(--accent-green); }
.toast.error .toast-icon { color: var(--accent-red); }

/* --- FOOTER --- */
footer {
  background: #060608;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-3px);
  color: #fff;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-orange);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--text-primary);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
}

.newsletter-form button {
  padding: 0.8rem;
  border-radius: 10px;
  background: var(--grad-primary);
  border: none;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* --- ADMIN PANEL CSS --- */
.admin-body {
  background-color: #08080a;
  min-height: 100vh;
}

.admin-header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
}

.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-nav-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-container {
  max-width: 1400px;
  margin: 120px auto 4rem auto;
  padding: 0 2rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.stat-card-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-orange);
}

.admin-content-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.admin-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.15);
}

.admin-tab-btn {
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast);
}

.admin-tab-btn.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.01);
}

.admin-tab-pane {
  display: none;
  padding: 2rem;
}

.admin-tab-pane.active {
  display: block;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.admin-table th {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
  background: rgba(0,0,0,0.1);
}

table.admin-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

table.admin-table tr:hover td {
  background: rgba(255,255,255,0.01);
  color: var(--text-primary);
}

.badge-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pending {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 183, 3, 0.25);
}

.status-approved {
  background: rgba(42, 157, 143, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(42, 157, 143, 0.25);
}

.status-rejected {
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(230, 57, 70, 0.25);
}

.action-btn-group {
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-approve {
  background: var(--accent-green);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn-reject {
  background: var(--accent-red);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn-delete {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.btn-delete:hover {
  background: var(--accent-red);
  color: #fff;
  border-color: transparent;
}

/* Admin Login Container */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 69, 0, 0.08) 0%, rgba(10, 10, 12, 0) 70%), var(--bg-dark);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--grad-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  text-align: center;
}

.login-logo {
  margin-bottom: 2rem;
}

.login-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.login-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.login-error {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: var(--accent-red);
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 6rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 4rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dual-portal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .logistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .integrations-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .integration-pills {
    justify-content: center;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #08080a;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    transition: top 0.4s ease;
  }
  .nav-links.open {
    top: 0;
  }
  .nav-wrapper .glow-btn {
    display: none; /* Hide top CTA on small mobile header, handled inside menu */
  }
  .nav-links .glow-btn-mobile {
    display: inline-flex !important;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .story-title h2,
  .section-header h2,
  .apply-info h2,
  .integrations-content h2 {
    font-size: 2.3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .admin-tabs {
    flex-direction: column;
  }
  .admin-tab-btn {
    width: 100%;
    padding: 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .admin-tab-btn.active {
    border-left-color: var(--accent-orange);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .logistics-grid {
    grid-template-columns: 1fr;
  }
  .apply-panel {
    padding: 1.5rem;
  }
}

/* --- PORTAL CARD IMAGES --- */
.portal-image-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

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

.portal-card:hover .portal-image-wrapper img {
  transform: scale(1.06);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.reveal-left {
  transform: translateX(-35px);
}

.reveal.reveal-right {
  transform: translateX(35px);
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered animation delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

