/* ==========================================================================
   Lion Track Safari Company - Light Theme Stylesheet
   Dominant White Aesthetic with Logo Colors (Warm Amber Gold & Dark Espresso Brown)
   ========================================================================== */

:root {
  /* Logo Color Palette */
  --logo-brown: #3b1d11;
  --logo-brown-dark: #241109;
  --logo-gold: #d48817;
  --logo-gold-light: #f59e0b;
  --logo-gold-soft: rgba(212, 136, 23, 0.12);
  
  /* White & Light Theme Colors */
  --bg-main: #ffffff;
  --bg-subtle: #fcf9f5;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --border-card: #e8e1d7;
  --border-glow: #d48817;
  
  --text-main: #241109;
  --text-muted: #64554d;
  --text-dim: #94857c;
  
  --gradient-main: linear-gradient(135deg, #d48817 0%, #3b1d11 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d48817 100%);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(59, 29, 17, 0.05);
  --shadow-md: 0 12px 30px rgba(59, 29, 17, 0.08);
  --shadow-lg: 0 20px 45px rgba(59, 29, 17, 0.12);
  
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--logo-brown);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: var(--logo-gold-soft);
  border: 1px solid rgba(212, 136, 23, 0.3);
  color: var(--logo-brown);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--logo-brown);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(59, 29, 17, 0.25);
}
.btn-primary:hover {
  background: var(--logo-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 136, 23, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: var(--logo-brown);
  border: 2px solid var(--logo-brown);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--logo-gold-soft);
  border-color: var(--logo-gold);
  color: var(--logo-gold);
  transform: translateY(-2px);
}

/* Header Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--logo-gold);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--logo-gold-soft);
  color: var(--logo-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--logo-brown);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 90px;
  background: var(--bg-subtle);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 3.4rem;
  letter-spacing: -0.5px;
  margin: 20px 0;
  color: var(--logo-brown);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hero Moving Photo & Visual Container */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  background: #ffffff;
}

.hero-slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide-img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--logo-gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Floating Badges over Hero Image */
.floating-card {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatingCardMotion 4s ease-in-out infinite alternate;
}

.floating-card-1 {
  top: 20px;
  left: -20px;
}

.floating-card-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 2s;
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--logo-gold-soft);
  color: var(--logo-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.fc-text strong {
  display: block;
  color: var(--logo-brown);
  font-size: 0.9rem;
}
.fc-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes floatingCardMotion {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* Marquee Section */
.marquee-section {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-pill {
  padding: 10px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--logo-brown);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.marquee-pill:hover {
  background: var(--logo-gold-soft);
  border-color: var(--logo-gold);
  color: var(--logo-gold);
}

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

/* Trusted Partner Brands Bar */
.partner-brands-section {
  padding: 28px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-card);
}

.brands-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.brand-item {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--logo-brown);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.brand-item:hover {
  color: var(--logo-gold);
  opacity: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 16px 0;
  color: var(--logo-brown);
}

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

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: var(--logo-gold);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--logo-gold-soft);
  color: var(--logo-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--logo-brown);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.link-arrow {
  color: var(--logo-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.service-card:hover .link-arrow {
  gap: 10px;
  color: var(--logo-brown);
}

/* Workflow Section */
.workflow-section {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-step {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.workflow-step.active, .workflow-step:hover {
  background: #ffffff;
  border-color: var(--logo-gold);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--logo-gold);
  letter-spacing: 1px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--logo-brown);
  margin: 6px 0 8px 0;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.workflow-preview-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.workflow-preview-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--logo-gold);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 32px;
  background: var(--logo-gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--logo-brown);
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--logo-brown);
  margin: 16px 0;
}
.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin: 24px 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li::before {
  content: "✓";
  color: var(--logo-gold);
  font-weight: bold;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--logo-gold);
  box-shadow: var(--shadow-md);
}

.blog-content {
  padding: 28px;
}

.blog-tag {
  color: var(--logo-gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-title {
  font-size: 1.15rem;
  margin: 10px 0 16px 0;
}

.blog-title a {
  color: var(--logo-brown);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-title a:hover {
  color: var(--logo-gold);
}

/* Footer Section */
.footer {
  padding: 80px 0 30px 0;
  background: var(--logo-brown-dark);
  color: #ffffff;
}

.footer .logo-img {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #c5b8af;
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #c5b8af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--logo-gold-light);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #a8988e;
}

.newsletter-form input:focus {
  border-color: var(--logo-gold);
}

.newsletter-form .btn-primary {
  background: var(--logo-gold);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a8988e;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .workflow-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.7rem;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .pricing-card.popular {
    transform: none;
  }
}
