/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* Typography */
.hero-title, .section-title, .experience-title, .partners-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #8B4513;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  height: 100%;
  background: linear-gradient(rgba(139,69,19,0.4), rgba(139,69,19,0.4)), 
              url('https://images.pexels.com/photos/35467020/pexels-photo-35467020.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

/* Enhanced Hero Title Container */
.hero-title-container {
  position: relative;
  margin-bottom: 3rem;
}

/* Animated Hero Title */
.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  animation: wordSlideIn 1s ease-out forwards;
  margin: 0 0.2em;
  position: relative;
}

.title-word::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  animation: underlineExpand 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

.word-1 {
  animation-delay: 0.2s;
}

.word-2 {
  animation-delay: 0.4s;
  color: #D4AF37;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.3);
}

.word-3 {
  animation-delay: 0.6s;
}

/* Hero Subtitle */
.hero-subtitle {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
  margin-bottom: 2rem;
}

.subtitle-text {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f0f0f0;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Buttons */
.hero-cta .btn {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  border: 2px solid #D4AF37;
  color: #fff;
}

.hero-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFD700, #F4A460);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero-cta .btn-primary:hover::before {
  left: 0;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.hero-cta .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero-cta .btn-outline-light:hover::before {
  left: 0;
}

.hero-cta .btn-outline-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.hero-cta .btn i {
  margin-right: 8px;
  font-size: 1rem;
}

.hero-cta .me-3 {
  animation-delay: 1.5s;
}

.hero-cta .btn-outline-light {
  animation-delay: 1.7s;
}

/* Enhanced Divider */
.hero-divider {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #D4AF37, #FFD700, #D4AF37, transparent);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: dividerExpand 1.5s ease-out 1.2s forwards;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Floating Elements */
.hero-cta {
  position: relative;
}

.floating-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: floatingParticles 4s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 2s;
}

.element-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2.5s;
  width: 15px;
  height: 15px;
}

.element-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
  width: 25px;
  height: 25px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInBounce 1s ease-out 2s forwards;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
  transform: rotate(45deg);
  animation: arrowBounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-arrow:hover {
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Title Section */
.title-section {
  padding: 80px 0;
  background: white;
}

/* Secondary Hero */
.secondary-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.secondary-hero-image {
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(69, 53, 41, 0.7)), 
              url('../images/herobg2.png') center/cover fixed;
}


/* Content Sections */
.about-section, .vehicles-section, .action-section, .testimonials-section {
  padding: 80px 0;
  background: white;
}

.about-section:nth-child(even), .vehicles-section:nth-child(even), .action-section:nth-child(even) {
  background: #f8f8f8;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: #D4AF37;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Experience Section */
.experience-section {
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.experience-bg {
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(69, 53, 41, 0.7)), 
              url('../images/share.png') center/cover fixed ;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
}

.experience-text {
  font-size: 1.2rem;
  color: white;
  line-height: 1.8;
  text-align: center;
}

/* Button Styles */
.btn-safari {
  display: inline-block;
  background: #D4AF37;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
}

.btn-safari:hover {
  background: transparent;
  color: #D4AF37;
  text-decoration: none;
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-container img {
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
  background: #f8f8f8;
}

.testimonial-item {
  margin-bottom: 3rem;
}

.testimonial-item blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #666;
  border-left: 4px solid #D4AF37;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.testimonial-item cite {
  font-weight: 600;
  color: #8B4513;
  font-style: normal;
}



.separator {
  color: white;
  margin: 0 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title, .experience-title, .partners-title {
    font-size: 2rem;
  }
  
  .about-section, .vehicles-section, .action-section, .testimonials-section {
    padding: 60px 0;
  }
  
  .experience-section, .partners-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title, .experience-title, .partners-title {
    font-size: 1.5rem;
  }
  
  .section-text, .experience-text {
    font-size: 1rem;
  }
}

/* ===== SCROLL ANIMATIONS CSS ===== */

/* Base animation states */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hero specific animations */
.float-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.float-in.animate {
    opacity: 1;
    transform: translateY(0);
    animation: gentle-float 6s ease-in-out infinite;
}

.expand-in {
    width: 0;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expand-in.animate {
    width: 80px;
}

/* Keyframe animations */
@keyframes gentle-float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

/* Enhanced section styling for animations (excluding secondary-hero and experience sections) */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.about-section:hover::before {
    transform: rotate(-45deg) translateX(100%);
}

.vehicles-section {
    position: relative;
    overflow: hidden;
}

/* Enhanced image container animations */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.image-container:hover::before {
    left: 100%;
}

.image-container img {
    transition: all 0.4s ease;
    position: relative;
    z-index: 0;
}

.image-container:hover img {
    transform: scale(1.08);
}

/* New Hero Animation Keyframes */
@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

@keyframes floatingParticles {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    25% {
        opacity: 0.7;
        transform: translateY(-20px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-40px) scale(1.2);
    }
    75% {
        opacity: 0.7;
        transform: translateY(-20px) scale(1);
    }
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-10px) rotate(45deg);
    }
}

/* Responsive Design for New Hero Elements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .subtitle-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
        padding: 0.4rem 1rem;
    }
    
    .title-word {
        margin: 0 0.1em;
    }
    
    .floating-element {
        width: 15px;
        height: 15px;
    }
    
    .element-2 {
        width: 12px;
        height: 12px;
    }
    
    .element-3 {
        width: 18px;
        height: 18px;
    }
    
    .hero-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-cta .me-3 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .subtitle-text {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 10px;
    }
}

/* Enhanced button animations */
.btn-safari {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-safari::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: left 0.6s ease;
}

.btn-safari:hover::before {
    left: 100%;
}

.btn-safari:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Enhanced experience section - ANIMATIONS REMOVED */
.experience-section {
    position: relative;
    /* overflow: hidden; - removed for no animations */
}

.experience-bg {
    /* background-attachment: fixed; - removed for no parallax */
    position: relative;
}

/* Remove hover effects for experience section
.experience-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.experience-section:hover .experience-bg::before {
    opacity: 1;
}
*/

/* Enhanced parallax sections - SECONDARY HERO REMOVED */
/* .secondary-hero-image, - removed from parallax
.experience-bg {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}
*/

/* Loading state */
body:not(.loaded) * {
    animation-play-state: paused !important;
    transition: none !important;
}

body.loaded {
    animation: page-fade-in 0.5s ease-out;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced text animations */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #8B4513);
    transition: width 0.8s ease;
}

.section-title.animate::after {
    width: 100%;
}

/* Staggered animations for multiple elements */
.row > [class*="col-"] {
    transition-delay: var(--animation-delay, 0s);
}

/* Enhanced responsive animations */
@media (max-width: 768px) {
    .fade-in-up,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .bounce-in {
        transform: translateY(30px);
        transition-duration: 0.6s;
    }
    
    .slide-in-left.animate,
    .slide-in-right.animate {
        transform: translateY(0);
    }
}

/* Gallery Preview Section */
.gallery-preview-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.preview-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.preview-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.preview-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-image:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139,69,19,0.3);
}

.btn-gallery:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,69,19,0.4);
    color: white;
    text-decoration: none;
}

.btn-gallery i {
    font-size: 18px;
}

/* Responsive Design for Gallery Preview */
@media (max-width: 992px) {
    .gallery-preview-grid {
        max-width: 500px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-preview-grid .preview-image:nth-child(3) {
        grid-column: span 2;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gallery-preview-section {
        padding: 60px 0;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
        max-width: 300px;
    }
    
    .gallery-preview-grid .preview-image:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .preview-image img {
        height: 150px;
    }
    
    .btn-gallery {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Wildlife Showcase Section */
.wildlife-showcase-section {
    padding: 0;
    position: relative;
}

.wildlife-bg {
    padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(69, 53, 41, 0.7)), 
                url('../images/f9.jpg') top/cover fixed;
}

.wildlife-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.wildlife-bg .container {
    position: relative;
    z-index: 2;
}

.wildlife-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wildlife-text {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.wildlife-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #F4A460;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.feature-item span {
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Customer Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 50px;
    color: #D4AF37;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.review-rating i {
    color: #FFD700;
    font-size: 16px;
}

.review-location {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.review-location i {
    color: #D4AF37;
    margin-right: 5px;
}

.review-body {
    flex-grow: 1;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.review-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FFD700, #F4A460);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.carousel-btn i {
    color: white;
    font-size: 20px;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #D4AF37;
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: #FFD700;
}

/* Add Review Button */
.btn-add-review {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-add-review:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

.btn-add-review i {
    font-size: 1.2rem;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.review-modal.active {
    display: flex;
}

.review-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.review-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Review Form */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
}

.star-rating i {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #FFD700;
    transform: scale(1.2);
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
}

/* Form Message */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.btn-submit {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FFD700, #F4A460);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-carousel-container {
        padding: 0 50px;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    .review-modal-content {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .reviews-carousel-container {
        padding: 0 40px;
    }
    
    .review-card {
        min-width: 250px;
        max-width: 250px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .btn-add-review {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .star-rating {
        font-size: 1.5rem;
        gap: 5px;
    }
}

/* Responsive Design for Wildlife Showcase */
@media (max-width: 768px) {
    .wildlife-bg {
        padding: 60px 0;
    }
    
    .wildlife-title {
        font-size: 2rem;
    }
    
    .wildlife-text {
        font-size: 1rem;
    }
    
    .wildlife-features {
        gap: 20px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
