/* Reset and Variables */
:root {
  --color-primary: #d6a75c;
  --color-primary-dark: #b8860b;
  --color-dark: #1a1f2c;
  --color-dark-light: #2a3142;
  --color-gray: #6c757d;
  --color-light-gray: #f5f6f7;
  --color-white: #ffffff;
  --font-heading: 'Inter Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-gray);
}

/* Landing Page Specific Styles */
.landing-page {
  min-height: 100vh;
  background-color: var(--color-white);
  overflow-x: hidden;
  padding-top: 0;
  margin: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(45,45,45,0.7) 100%), 
              url('../assets/hero-giraffe-savannah.jpg') center center/cover no-repeat;
  color: var(--color-white);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px; /* Add padding to account for header */
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  color: var(--color-white);
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
}

.badge i {
  font-size: 1rem;
  color: var(--color-primary);
}

/* Button Styles */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.primary-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 167, 92, 0.2);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature {
  padding: 2rem;
  background: var(--color-white);
  border-radius: 12px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.feature h3 {
  color: var(--color-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.feature p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Value Section */
.value-section {
  background-color: var(--color-light-gray);
}

.value-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-text h2 {
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.value-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .value-content {
    grid-template-columns: 1fr;
  }
  
  .value-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero-content {
    padding-top: 120px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

.how-section {
  padding: 5rem 0;
  background-color: var(--color-light-gray);
}

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

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-content {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.step-content h3 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-content p {
  color: var(--color-gray);
  margin: 0;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    padding-left: 60px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

.payment-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}


.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  color: var(--color-gray);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
}

.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.steps-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.steps-container.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Logo Styles */
.logo-container {
  position: absolute;
  top: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.logo {
  margin-top: 1%;
  max-width: 500px;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-container {
    top: 1.5rem;
  }
  
  .logo {
    max-width: 200px;
  }
}

/* Remove all footer-specific styles as they are now in common.css */

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .value-content {
    grid-template-columns: 1fr;
  }
  
  .value-text {
    padding-right: 0;
    order: 2;
  }
  
  .value-image {
    order: 1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
}