/*
Theme Name: zawari-theme
Author: Alfred
Version: 1.0
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #694b1b;
    --secondary-brown: #8b6f47;
    --tan-brown: #bd8c3d;
    --orange: #ff7e00;
    --golden: #ffc800;
    --cream: #fff9bb;
    --light-cream: #fffef0;
    --red-accent: #bd3317;
    --white: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --border-radius: 10px;
}

@font-face {
  font-family: 'SedgwickAve';
  src: url('../fonts/SedgwickAve-Regular.ttf') format('truetype');
}

.font1 {
  font-family: 'SedgwickAve-Regular', cursive;
}



body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Ballons Background */
.balloon {
  position: absolute;
  opacity: 0.65;
  left:-370px;
 /* animation: drift 25s infinite ease-in-out;*/
 animation: flyAcross 25s linear infinite;
 /* animation: none;  let JS control it */
  z-index:1;
}

/*@keyframes drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(80px, -40px); }
  50%  { transform: translate(160px, 0); }
  75%  { transform: translate(80px, 40px); }
  100% { transform: translate(0, 0); }
}*/
@keyframes flyAcross {
  0%   { left: -200px; opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.6; }
  100% { left: 100vw; opacity: 0; }
}
@keyframes flyAcross {

    from {
        left: -200px;
    }

    to {
        left: 120vw;
    }

}
.balloon2
 	{ 
	/*animation: drift 30s infinite ease-in-out; left: 20%; */
    width: 80px;
      top: 10%;

}
.balloon3 
	{ 
	/*animation: drift 40s infinite ease-in-out reverse; left: 60%; */
    width: 120px;
      top: 25%;

}

/* Floating Clouds Background */
.cloud-float {
    position: absolute;
    opacity: 0.65;
    z-index: 5;
    pointer-events: none;
}

.cloud-float-1 {
    width: 100px;
    top: 10%;
    left: 5%;
    animation: float-cloud 20s ease-in-out infinite;
}

.cloud-float-2 {
    width: 120px;
    top: 25%;
    right: 8%;
    animation: float-cloud 25s ease-in-out infinite reverse;
}

.cloud-float-3 {
    width: 90px;
    top: 45%;
    left: 10%;
    animation: float-cloud 30s ease-in-out infinite;
}

.cloud-float-4 {
    width: 110px;
    top: 60%;
    right: 5%;
    animation: float-cloud 28s ease-in-out infinite reverse;
}

.cloud-float-5 {
    width: 95px;
    top: 45%;
    left: 35%;
    animation: float-cloud 22s ease-in-out infinite;
}

@keyframes float-cloud {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    50% {
        transform: translateX(80px) translateY(-40px);
    }
}

/* Navigation */
.navbar {
    background: var(--primary-brown);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--golden);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--golden);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-brown);
    min-width: 200px;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 5px;
    margin-top: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    display: block;
    font-size: 0.95em;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--primary-brown);
    color: var(--golden);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Scroll to Top Button */
.scroll-top-btn {
    display: none; /* JS will toggle this */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--transparent);
    color: var(--transparent);
    border: none;
    border-radius: 0%;
	width:90px;
	height:90px;
    background-image: url('../images/Cloud-8.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; 
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    font-weight: bold;
}

@media (min-width: 768px) {
  .scroll-top-btn {
    width: 60px;
    height: 60px;
  }
}

/* Style the image inside the button */
.scroll-top-btn img {
    width: 30%;               /* Make image fill the button width */
    height: 30%;              /* Make image fill the button height */
    object-fit: contain;       /* Maintain aspect ratio without stretching */
}

.scroll-top-btn:hover {
background-image: url('../images/Cloud 11.png');
    transform: translateY(-5px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    position: relative;
    padding: 50px 20px 10px;
    text-align: center;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 8px solid var(--primary-brown);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('../images/Scenery 1.png') no-repeat center;
    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 10px;
    width: 300px;
    height: 300px;
    background: url('../images/Elephant 1.png') no-repeat center;
    background-size: contain;
    opacity: 0.85;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--primary-brown);
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 1rem;
    color: var(--primary-brown);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    animation: slideDown 0.8s ease-out;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 2rem;
    color: var(--secondary-brown);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Buttons */
.cta-button {
    background: #c0392b;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
}
.hero-button {
  margin-top: 100px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #e74c3c;
}
.cta-button.large {
    padding: 18px 50px;
    font-size: 1.2em;
}

.btn {
    background: var(--golden);
    color: var(--primary-brown);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 40px 20px 60px 20px;
    position: relative;
    z-index: 2;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-brown);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden);
    border-radius: 2px;
}

/* Features Section */
.safari-features {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
    border-top: 6px solid var(--primary-brown);
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid var(--golden);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-card p {
    color: var(--text-light);
}

/* About Section */
.about-safari {
    background: white;
    padding: 80px 20px;
    border-top: 8px dotted var(--primary-brown);
    border-bottom: 8px dotted var(--tan-brown);
    position: relative;
}

.about-safari::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 350px;
    height: 300px;
    background: url('../images/Scenery 5.png') no-repeat center;
    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}

/* laptop and above */
@media (min-width: 1024px) {
    .about-safari::after {
        height:499px;
      right: 40px;
    }
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
}

.section-number {
    font-size: 4em;
    font-weight: bold;
    color: var(--golden);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.about-text h2 {
    color: var(--primary-brown);
    font-size: 2.5em;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.about-text h2::after {
    display: none;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

.about-image {
    display: none;
}

/* Introduction Section */
.intro-safari {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    padding: 80px 20px;
    position: relative;
}

.intro-safari::before {
    content: '';
    position: absolute;
    left: 14;
    bottom:0;
    width: 350px;
    height: 350px;
    background: url('../images/Scenery 4.png') no-repeat center;
    background-size: contain;
    opacity: 0.85;
    z-index: 1;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* force order */
.intro-text {
    grid-column: 2;
}

.intro-image {
    grid-column: 1;
}

.intro-image {
    display: none;
}

.intro-text {
    margin-right: auto;
}

.intro-text h2 {
    color: var(--primary-brown);
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
}

.intro-text h2::after {
    display: none;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05em;
}

/* Destinations Preview */
.safari-destinations {
    padding: 60px 20px;
    background: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
/* laptop and above */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.destination-preview-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 4px solid var(--primary-brown);
}

.destination-preview-card:hover {
    transform: scale(1.05);
}

.destination-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 75, 27, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.destination-preview-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

/* Packages Preview */
.safari-packages {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
}

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

.package-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 3px solid var(--primary-brown);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.package-content .duration {
    color: var(--orange);
    font-weight: bold;
    margin-bottom: 10px;
}

.package-content .description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-content .price {
    color: var(--red-accent);
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Testimonials */
.safari-testimonials {
    background: white;
    border-top: 6px solid var(--primary-brown);
}

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

.testimonial-card {
    background: var(--light-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--tan-brown);
    border-left: 5px solid var(--golden);
}

.testimonial-card .stars {
    color: var(--golden);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.testimonial-card .location {
    font-size: 0.9em;
    font-style: normal;
}

/* Wildlife Highlights */
/* carousel */
/* Carousel wrapper */
.wildlife-swiper {
  width: 100%;
  padding: 20px 0;
}

/* Each slide/card */
.swiper-wrapper {
  margin-bottom: 30px;
}

/* Each slide/card */
.swiper-slide {
  display: flex;
  height: auto !important; /* allow card to control height */
  margin-bottom: 30px;
}

.wildlife-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%; /* equal height inside swiper */
}

/* Headings and text */
.wildlife-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #333;
}

.wildlife-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  flex-grow: 1; /* ensures text fills space evenly */
}

/* Swiper pagination dots */
.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #c0392b;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #e74c3c;
  opacity: 1;
}

.swiper-pagination-bullet {
  background: #c0392b; /* safari red accent */
}
.swiper-pagination-bullet-active {
  background: #e74c3c;
}

.safari-wildlife {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
}

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

.wildlife-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid var(--golden);
}

.wildlife-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animal images */
.wildlife-animal-img {
    width: auto;
    max-height: 200px;
    margin-bottom: 15px;
    object-fit: contain;    /* keep aspect ratio */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.wildlife-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.wildlife-card h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.wildlife-card p {
    color: var(--text-light);
}

/* Generic Carousel classes */
/* Generic card style */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}

/* Images inside cards */
.card-img {
  width: auto;
    max-height: 200px;
    margin-bottom: 15px;
    object-fit: contain;    /* keep aspect ratio */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Headings */
.card h3, .card h4 {
  margin: 10px 0 5px;
  color: #333;
}

/* Text */
.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #c0392b;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #e74c3c;
  opacity: 1;
}

/* Responsive image heights */
@media (max-width: 1024px) {
  .card-img { height: 180px; }
}
@media (max-width: 768px) {
  .card-img { height: 160px; }
}
@media (max-width: 480px) {
  .card-img { height: 140px; }
}


/* Blog Preview */
.safari-blog {
    padding: 60px 20px;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 3px solid var(--primary-brown);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--red-accent);
}

/* CTA Section */
.safari-cta {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.safari-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.safari-cta h2::after {
    background: var(--golden);
}

.safari-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--primary-brown);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--golden);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--golden);
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: var(--golden);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea, select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--golden);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--golden);
    color: var(--primary-brown);
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.price {
    color: var(--orange);
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.rating {
    color: var(--golden);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-brown);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--primary-brown);
        margin-top: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2em;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 20px;
    }

    .hero {
        padding: 100px 20px;
        min-height: 400px;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    .about-content-wrapper,
    .intro-content-wrapper {
        grid-template-columns: 1fr;
    }

    .about-safari::after {
        width: 250px;
        height: 200px;
        opacity: 0.5;
    }

    .intro-safari::before {
        width: 250px;
        height: 250px;
        opacity: 0.5;
    }

    .cloud-float-1, .cloud-float-2, .cloud-float-3, .cloud-float-4, .cloud-float-5 {
        width: 60px;
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3em;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 1em;
    }

    section h2 {
        font-size: 1.5em;
    }

    .feature-card,
    .testimonial-card {
        padding: 20px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero::before,
    .hero::after {
        width: 200px;
        height: 200px;
    }

    .about-safari::after,
    .intro-safari::before {
        width: 180px;
        height: 150px;
    }

    .cloud-float-1, .cloud-float-2, .cloud-float-3, .cloud-float-4, .cloud-float-5 {
        width: 50px;
        opacity: 0.3;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .dropdown-menu {
        min-width: 150px;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.9em;
    }
