/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c19a6b;
    --dark: #1a1a1a;
    --light: #f9f5f0;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

/* CTA Button */
.cta-button {
    background-color: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.cta-button:hover {
    background-color: #b0885a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scrolled Header Styles */
.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .logo-img {
    height: 40px;
}

.scrolled .nav-link {
    color: white;
}

.scrolled .cta-button {
    background-color: var(--gold);
}

/* Safari Hero Section Styles */
.safari-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/geranimo-wYy3rvvgjAU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    width: 55%;
    animation: fadeInUp 1s ease-out;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.highlight-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gold-btn {
    background-color: #d4af37;
    color: #1a2e22;
    border: 2px solid #d4af37;
}

.gold-btn:hover {
    background-color: #c9a227;
    border-color: #c9a227;
    transform: translateY(-2px);
}

.outline-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.outline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-feature {
    width: 40%;
    animation: fadeIn 1.5s ease-out;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #1a2e22;
}

.card-image {
    height: 200px;
    background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #d4af37;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.card-details i {
    margin-right: 5px;
    color: #d4af37;
}

.card-link {
    color: #1a2e22;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.card-link:hover {
    color: #d4af37;
}

.card-link:hover i {
    transform: translateX(3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-feature {
        width: 80%;
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-feature {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--dark);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    transition: right 0.5s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-cta {
    background-color: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.mobile-cta:hover {
    background-color: #b0885a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-left, .nav-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .logo {
        position: static;
        transform: none;
        margin-right: auto;
    }
    
    .navbar {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .scrolled {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
        padding: 100px 20px 40px;
    }
}

/* Safari Tours Section */
.safari-tours {
    padding: 80px 0;
    background-color: #f9f7f2;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2e22;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 25px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #1a2e22;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    color: #1a2e22;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 60px;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 70px;
}

.card-price {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.card-price span {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.card-button {
    display: inline-flex;
    align-items: center;
    color: #1a2e22;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.card-button i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.card-button:hover {
    color: #d4af37;
}

.card-button:hover i {
    transform: translateX(3px);
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #1a2e22;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-button:hover {
    background: #d4af37;
    color: #1a2e22;
}

.view-all-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
}

@media (max-width: 480px) {
    .safari-tours {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .card-description {
        min-height: auto;
    }
}



/* Premium White Footer Styles */
.premium-white-footer {
  background: #ffffff;
  color: #333333;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #f0f0f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #c19a6b;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  color: #555555;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #c19a6b;
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.links-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-column li {
  margin-bottom: 12px;
}

.links-column a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.links-column a:hover {
  color: #c19a6b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
  font-size: 0.8rem;
  color: #888888;
}

.copyright {
  color: #888888;
}

.credits a {
  color: #c19a6b;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.credits a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .premium-white-footer {
    padding: 50px 0 25px;
  }
  
  .footer-logo {
    width: 150px;
  }
}