/* AR Wildlife Book Template - Main Styles */
:root {
  /* Primary Color Palette - Pastel High Contrast */
  --color-primary: #2c5530;
  --color-primary-light: #4a7c59;
  --color-primary-dark: #1a3320;
  
  --color-secondary: #8b4513;
  --color-secondary-light: #cd853f;
  --color-secondary-dark: #5d2f0a;
  
  --color-accent: #228b8d;
  --color-accent-light: #40e0d0;
  --color-accent-dark: #006666;
  
  --color-earth: #deb887;
  --color-earth-light: #f5deb3;
  --color-earth-dark: #8b7355;
  
  --color-nature: #9acd32;
  --color-nature-light: #adff2f;
  --color-nature-dark: #6b8e23;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-brand: 1.3rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-margin: 60px 0;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Navbar Customization */
.navbar-brand {
  font-size: var(--font-size-brand);
  font-weight: 600;
  color: var(--color-primary);
}

.navbar-nav .nav-link {
  color: var(--color-primary-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-earth-light) 0%, var(--color-nature-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44,85,48,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 275px;
}

.hero-image {
  z-index: 1;
  position: relative;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* About Section */
#about {
  background-color: #f8f9fa;
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: linear-gradient(45deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
  color: white;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  color: #333;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: #f8f9fa;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--color-nature-light) 0%, var(--color-earth-light) 100%);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-nature) 100%);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1rem 0;
}

/* Team Section */
#team {
  background-color: white;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: #f8f9fa;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-accent-light);
}

/* Reviews Section */
#reviews {
  background: linear-gradient(45deg, var(--color-earth-light) 0%, var(--color-nature-light) 100%);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-accent);
  font-family: serif;
}

/* Case Studies Section */
#casestudy {
  background-color: #f8f9fa;
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  color: white;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: white;
}

.timeline-item {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

/* Career Section */
#career {
  background: linear-gradient(45deg, var(--color-nature-light) 0%, var(--color-earth-light) 100%);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
#coreinfo {
  background-color: #f8f9fa;
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 50%, #8b5cf6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#contacts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
  z-index: 1;
}

#contacts .container {
  position: relative;
  z-index: 2;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), 
              0 0 0 1px rgba(255,255,255,0.2);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
  border-radius: 12px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.3rem rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Contact Form Labels */
#contacts .form-label {
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

#contacts .form-check-label {
  color: #4b5563;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Contact Info Cards */
#contacts .col-lg-4 {
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#contacts .col-lg-4:hover {
  transform: translateY(-5px);
}

#contacts .col-lg-4 i {
  color: #fbbf24;
  filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.3));
  transition: all 0.3s ease;
}

#contacts .col-lg-4:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(251, 191, 36, 0.5));
}

#contacts .col-lg-4 h5 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#contacts .col-lg-4 p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Section Typography */
#contacts .section-title h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

#contacts .section-subtitle {
  color: #fbbf24;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

#contacts .section-title p {
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Blog Section */
#blog {
  background-color: white;
}

.blog-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-body {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  background-color: #f8f9fa;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--color-accent);
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  margin: 0;
}

/* Gallery Section */
#gallery {
  background: linear-gradient(45deg, var(--color-earth-light) 0%, var(--color-nature-light) 100%);
  padding: 60px 0;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Footer */
#footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  #hero::before {
    animation: none;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

.bg-primary-custom {
  background-color: var(--color-primary);
}

.bg-accent {
  background-color: var(--color-accent);
}

/* Cards Enhancement */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
}

/* Button Enhancements */
.btn {
  border-radius: 10px;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline-primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
