/* 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);
}

/* 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;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Full Screen Hero */
.safari-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Charl-Stols-Leopard-Photography-Leopard-drinking-water.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d4a017;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #d4a017;
}

.hero-cta:hover {
    background-color: transparent;
    color: #d4a017;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Safari Container */
.safari-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

/* Tab Styles */
.tab-container {
    margin-top: 2rem;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #d4a017;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4a017;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Overview Content */
.overview-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.overview-text {
    flex: 2;
}

.overview-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlights {
    margin-top: 2rem;
}

.highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlights ul {
    list-style: none;
}

.highlights li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.highlights i {
    margin-right: 0.8rem;
    color: #d4a017;
}

.overview-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.03);
}

/* Itinerary Styles */
.itinerary-day {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.day-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.day-location {
    color: #777;
    font-size: 0.9rem;
}

.day-location i {
    margin-right: 0.3rem;
    color: #d4a017;
}

.day-content {
    display: flex;
    gap: 2rem;
}

.day-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.day-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.day-image:hover img {
    transform: scale(1.03);
}

.day-text {
    flex: 2;
}

.day-text p {
    margin-bottom: 1rem;
}

.day-details {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.day-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.day-details strong {
    color: #2c3e50;
}

/* Details Section (Inclusions/Exclusions) */
.details-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
    margin: 3rem 0;
}

.details-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.details-column {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.details-column h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.details-column h3 i {
    margin-right: 0.5rem;
}

.inclusions h3 i {
    color: #27ae60;
}

.exclusions h3 i {
    color: #e74c3c;
}

.details-column ul {
    list-style: none;
}

.details-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.details-column li:before {
    content: "•";
    color: #d4a017;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Improved Image Handling */
.overview-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 350px; /* Fixed height */
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.day-image {
    height: 250px; /* Fixed height for itinerary images */
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .details-container {
        flex-direction: column;
    }
    
    .overview-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .overview-image {
        height: 200px;
    }
    
    .day-image {
        height: 200px;
    }
}

/* Inquiry Section - Premium Minimalist */
.inquiry-section {
    padding: 5rem 0;
    background-color: #f8f5f0;
    position: relative;
}

.inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inquiry-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.inquiry-header p {
    color: #666;
    font-size: 1.1rem;
}

.inquiry-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 1rem 1rem 0.5rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.inquiry-form textarea {
    min-height: 100px;
    resize: none;
    padding-top: 1.5rem;
}

.inquiry-form label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #d4a017;
}

.inquiry-form input:focus + label,
.inquiry-form textarea:focus + label,
.inquiry-form input:not(:placeholder-shown) + label,
.inquiry-form textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: #d4a017;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #d4a017;
    transform: translateX(5px);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .inquiry-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .inquiry-header h2 {
        font-size: 1.7rem;
    }
    
    .inquiry-header p {
        font-size: 1rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    background-color: #fff;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-table-container {
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.entries-info {
    font-size: 0.9rem;
    color: #666;
}

.table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: #2c3e50;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f5f5f5;
}

.pricing-table td:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    color: #666;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    cursor: pointer;
}

.page-number.active {
    background-color: #d4a017;
    color: white;
}

.pricing-notes {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.pricing-notes h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-notes p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-factors {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.price-factors li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.accommodation-options {
    margin-top: 2.5rem;
}

.accommodation-options h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.option-card {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.option-card h5 {
    color: #d4a017;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.option-card ul {
    list-style: none;
    padding-left: 0;
}

.option-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.option-card li:before {
    content: "•";
    color: #d4a017;
    font-weight: bold;
    margin-right: 0.7rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-notes {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .table-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .option-card {
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }
    
    .day-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tabs {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

/* 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;
  }
}