/* Base Styles */
:root {
--primary-color: #ffce00;
--color:#056839;
--secondary-color: #d62828;
--accent-color: #3a7d44;
--dark-color: #1a1a1a;
--light-color: #f8f9fa;
--text-color: #333333;
--text-light: #ffffff;
--primary-light: #cfb446;
--text-dark: #000000;
--white: #056839;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a{
    text-decoration: none;
}
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.success-popup.hidden {
  display: none;
}

.success-popup .checkmark {
  font-size: 3rem;
  color: #056839;
  margin-bottom: 1rem;
}

.success-popup h3 {
  color: #056839;
  margin-bottom: 0.5rem;
}

.success-popup p {
  color: #666;
}

/* Main layout fixes */
.main-section {
    position: relative;
    z-index: 1;
    max-width: 1250px;
}

.container {
    min-height: auto !important; /* Remove fixed height */
    height: auto !important; /* Allow height to grow with content */
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Fixed sidebar positioning */
.tour-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Create space for sidebar on desktop */
@media (min-width: 769px) {
    .main-content {
        width: calc(100% - 350px);
    }
}

/* Main content adjustments */
.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: visible !important;
    position: relative;
    z-index: 2;
}

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #71ea66, #4ba279);
    color: white;
    border: none;
    padding: 18px 12px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 18px;
    font-weight: 900;
}

/* Mobile styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .tour-panel {
        transform: translateX(100%);
        width: 100vw;
        max-width: 400px;
    }
    
    .tour-panel.open {
        transform: translateX(0);
    }
    
    .main-content {
        width: 100%;
        padding: 20px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    min-height: 120px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn {
    display: inline-block;
    background: rgb(13, 90, 13);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    background: #6a8605;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #05520f 0%, #c7e712 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 117, 252, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

/* Destinations Section */
.destinations {
    padding: 80px 40px;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #3a7d44;
    margin: 15px auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px; /* Adjust max-width to fit 2 columns nicely */
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.destination-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

.destination-name {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.destination-location {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.destination-location i {
    margin-right: 8px;
}

.destination-info {
    padding: 25px;
}

.destination-info p {
    margin-bottom: 15px;
    color: #555;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.highlight {
    background: #e6f7ff;
    color: #2980b9;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Parallax Section */
.parallax {
    height: 500px;
    background: url('https://t-cf.bstatic.com/xdata/images/hotel/max1024x768/368522337.jpg?k=38c65f00e6884d97b00085d08049007fc2abf15e9b174402664e7da92e96130a&o=&hp=1') fixed center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.parallax-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(90, 88, 88, 0.7);
    border-radius: 10px;
    color: white;
}

.parallax-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section styling */
.section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.section-header {
    font-family: 'Roboto Slab', serif;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3a7d44;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 15px;
    color: #3a7d44;
}

/* Itinerary */
.itinerary {
    margin-top: 20px;
}

.day {
    margin-bottom: 50px;
    border-left: 4px solid #3a7d44;
    padding-left: 25px;
    position: relative;
}

.day:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #3a7d44;
    border-radius: 50%;
}

.day-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.day-title i {
    color: #3a7d44;
    margin-right: 10px;
}

.day-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule {
    display: grid;
    grid-template-columns: 1fr 2fr 3fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.schedule:nth-child(even) {
    background: #f9f9f9;
}

.schedule:hover {
    background: #fff8e6;
}

.schedule-header {
    font-weight: 700;
    background: #f1f8ff;
    padding: 12px;
    border-bottom: 2px solid #bbdefb;
    font-size: 1.1rem;
}

.time, .activity, .notes {
    padding: 12px;
}

.time {
    font-weight: 600;
    color: #3a7d44;
    font-size: 1.1rem;
}

.activity {
    font-weight: 500;
    color: #2c3e50;
}

/* Map */
.map-container {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-header {
    background: linear-gradient(90deg, #2c7744, #5aaf70);
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.map-wrapper {
    position: relative;
    height: 500px;
    background: #f5f5f5;
}

.map-route-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    max-width: 300px;
}

.map-route-info h3 {
    color: #2c7744;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-stops {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.route-stop {
    background: #e8f5e9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-stop i {
    color: #2c7744;
    font-size: 0.8rem;
}

/* Map iframe styling */
.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .map-wrapper {
        height: 400px;
    }
    
    .map-route-info {
        max-width: 200px;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .route-stop {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Pricing */
.price-box {
    background: linear-gradient(135deg, #16a085, #1abc9c);
    color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.price-note {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Details */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.inclusions, .exclusions {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.inclusions h3, .exclusions h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.inclusions h3 i {
    color: #27ae60;
    margin-right: 15px;
    font-size: 1.8rem;
}

.exclusions h3 i {
    color: #e74c3c;
    margin-right: 15px;
    font-size: 1.8rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
}

li:before {
    content: "•";
    position: absolute;
    left: 20px;
    color: #3a7d44;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Transportation */
.transport-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}

.transport-icon {
    text-align: center;
    padding: 20px;
    min-width: 180px;
}

.transport-icon i {
    font-size: 3.5rem;
    color: #3a7d44;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.transport-icon:hover i {
    transform: scale(1.1);
}

/* You May Also Like Section - Fixed positioning */
.recommended-tours {
    padding: 60px 40px;
    background: #f0f5ff;
    position: relative;
    z-index: 1; /* Lower than sidebar but above main content */
    width: 100%;
    clear: both;
    margin-top: 60px; /* Ensures it doesn't stick to previous sections */
}

.section-title {
    font-family: 'Roboto Slab', serif;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #3a7d44;
    margin: 15px auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tour-content {
    padding: 25px;
}

.tour-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.tour-meta i {
    margin-right: 5px;
}

.tour-price {
    color: #3a7d44;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 10px 0;
}

.tour-description {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tour-card .btn {
    display: inline-block;
    background: #3a7d44;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-card .btn:hover {
    background: #36553e;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}
        /* Footer styles */
.footer {
    color: white;
    padding: 2rem 0;
    max-width: 1240px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb') center/cover;
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-col {
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.footer-col:not(:last-child) {
    border-right: 1px solid #4b5563;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4b5563;
}

.social-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links  {
    padding: 1.5rem 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links i {
    margin-right: 0.5rem;
}

.footer-contact li {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4b5563;
}

.footer-contact i {
    color: #d1d5db;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
    transform: translateX(4px);
}

.subscribe-form {
    width: 100%;
}

@media (min-width: 768px) {
    .subscribe-form {
        width: auto;
        margin-top: 0;
    }
}

        .newsletter-form {
            display: flex;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border-top-left-radius: 0.375rem;
            border-bottom-left-radius: 0.375rem;
            border: none;
            color: #111827;
            outline: none;
        }
        
        .newsletter-button {
            background-color: #056839;
            color: white;
            padding: 0.5rem 1.1rem;
            border-top-right-radius: 0.375rem;
            border-bottom-right-radius: 0.375rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-button:hover {
            background-color: #056839;
            opacity: 90%;
        }


.affiliate-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
}

.affiliate-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .affiliate-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.affiliate-group {
    text-align: center;
}

@media (min-width: 768px) {
    .affiliate-group {
        text-align: left;
    }
}

.affiliate-group p {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.affiliate-logos {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .affiliate-logos {
        justify-content: flex-start;
    }
}

.affiliate-logos img {
    height: 3rem;
    transition: opacity 0.3s;
}

.affiliate-logos a:hover img {
    opacity: 0.9;
}

.booking-logos {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .booking-logos {
        justify-content: flex-end;
    }
}

.booking-logos img {
    height: 2rem;
    transition: opacity 0.3s;
}

.booking-logos a:hover img {
    opacity: 0.9;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
    text-align: center;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .copyright {
        text-align: left;
    }
}

.logo-img {
    width: 80px;
    margin-top: 1rem;
}

.footer-post-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-top: 1px solid #4b5563;
    border-bottom: 1px solid #4b5563;
}

.footer-post-item i {
    color: #d1d5db;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.footer-post-item a {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-post-item a:hover {
    color: white;
    transform: translateX(8px);
}


/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .schedule {
        grid-template-columns: 1fr;
    }
    
    .schedule-header {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        min-height: 90px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .section {
        padding: 25px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}



/* Close button for mobile */
.close-button {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.2);
}

.close-icon {
    width: 16px;
    height: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .close-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Panel Content Styles */
.panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 25px 20px;
    max-height: calc(120vh - 120px); /* Adjust based on header/footer heights if present */
    scrollbar-width: thin;
    scrollbar-color: rgba(214, 234, 102, 0.3) transparent;
}

.panel-content::-webkit-scrollbar {
    width: 6px;
}

.panel-content::-webkit-scrollbar-track {
    background: transparent;
}

.panel-content::-webkit-scrollbar-thumb {
    background: rgba(102, 234, 142, 0.3);
    border-radius: 3px;
}

.panel-content::-webkit-scrollbar-thumb:hover {
    background: rgba(205, 234, 102, 0.5);
}

.panel-header {
    margin-bottom: 25px;
    position: relative;
    top: -10px;
    /* background: rgba(255, 255, 255, 0.95); */
    /* backdrop-filter: blur(10px); */
    padding-bottom: 15px;
    z-index: 10;
}


.panel-title {
    font-size: 22px;
    font-weight: 700;
    color: #199921;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #66ea6d, #13750a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-subtitle {
    color: #0f4b0f;
    font-size: 13px;
    line-height: 1.4;
}

.search-section {
    margin-bottom: 20px;
}

.search-container {
    position: relative;
    margin-bottom: 12px;
}

.search-input {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #46f14e;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #a0aec0;
}

.filters {
    display: flex;
    gap: 8px;
}

.filter-select {
    flex: 1;
    padding: 8px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #44f570;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 12px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 10px;
    border-left: 3px solid #1ff153;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #1a1918;
}

.stat-label {
    font-size: 10px;
    color: #363834;
    margin-top: 2px;
}

.country-section {
    margin-bottom: 18px;
}

.country-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-header:hover {
    color: #319b11;
}

.country-header.active {
    color: #26db15;
    border-bottom-color: #c7e712;
}

.country-name {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
}

.uganda-flag {
    background: linear-gradient(to bottom, #000 0%, #000 16.67%, #FFFF00 16.67%, #FFFF00 33.33%, #FF0000 33.33%, #FF0000 50%, #000 50%, #000 66.67%, #FFFF00 66.67%, #FFFF00 83.33%, #FF0000 83.33%, #FF0000 100%);
}

.rwanda-flag {
    background: linear-gradient(to bottom, #00A1DE 0%, #00A1DE 50%, #FFFF00 50%, #FFFF00 75%, #00A651 75%, #00A651 100%);
}

.kenya-flag {
    background: linear-gradient(to bottom, #000 0%, #000 25%, #FF0000 25%, #FF0000 50%, #FFF 50%, #FFF 75%, #00A651 75%, #00A651 100%);
}

.tanzania-flag {
    background: linear-gradient(135deg, #00A651 0%, #00A651 48%, #FFFF00 48%, #FFFF00 52%, #00A1DE 52%, #00A1DE 100%);
}

.country-count {
    background: linear-gradient(135deg, #e1ea66, #43e711);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.toggle-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.tours-list {
    display: none;
    animation: slideDown 0.3s ease;
}

.tours-list.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-cards {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tour-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #8bea66, #4ba279);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-cards:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #90ea66;
}

.tour-cards:hover::before {
    opacity: 1;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.tour-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a6b0a;
    line-height: 1.3;
    flex: 1;
    margin-right: 8px;
}

.tour-duration {
    background: linear-gradient(135deg, #2926e2, #07b0e4);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.detail-tag {
    background: #f7fafc;
    color: #ee7606;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.tour-locations {
    color: #0d0e0d;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-icon {
    width: 12px;
    height: 12px;
}

.no-results {
    text-align: center;
    padding: 30px 15px;
    color: #fc8f00;
}

.no-results-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #cbd5e0;
}

.clear-filters {
    background: linear-gradient(135deg, #80ea66, #08642b);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 234, 109, 0.3);
}


/* hotels section */
.hotels-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #27ae60;
    border-radius: 2px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.hotels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.park-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hotel-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hotel-location {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-location i {
    font-size: 1.1rem;
}

.hotel-details {
    margin-top: 10px;
    flex-grow: 1;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ecf0f1;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #7f8c8d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-value {
    font-weight: 600;
    color: #2c3e50;
}

.price-tag {
    background: #f1c40f;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 15px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.section-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.section-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hotels-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


        /* Scroll to Top Button Styles */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 50px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0f5006, #0fc268);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(150, 206, 20, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 1000;
            border: none;
            outline: none;
        }
        
        .scroll-top-btn:hover {
            background: linear-gradient(135deg, #0f5e16, #0fc268);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(165, 204, 26, 0.7);
        }
        
        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top-btn:active {
            transform: scale(0.95);
        }
        
        /* Animation for button appearance */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .scroll-top-btn.pulse {
            animation: pulse 1.5s infinite;
        }


        .success-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-align: center;
            z-index: 1000;
            max-width: 90%;
            width: 400px;
          }
          
          .success-popup.hidden {
            display: none;
          }
          
          .success-popup .checkmark {
            font-size: 3rem;
            color: #056839;
            margin-bottom: 1rem;
          }
          
          .success-popup h3 {
            color: #056839;
            margin-bottom: 0.5rem;
          }
          
          .success-popup p {
            color: #666;
          }


               /* Custom Scrollbar Hidden */
        .modal-content {
          scrollbar-width: none; /* Firefox */
          -ms-overflow-style: none; /* IE and Edge */
      }

      .modal-content::-webkit-scrollbar {
          display: none; /* Chrome, Safari, Opera */
      }

      .country-search::-webkit-scrollbar {
          display: none;
      }

      .country-search {
          scrollbar-width: none;
          -ms-overflow-style: none;
      }

      /* Modal Styles */
      .modal-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.7);
          backdrop-filter: blur(5px);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s ease;
          padding: 20px;
      }

      .modal-overlay.active {
          opacity: 1;
          visibility: visible;
      }

      .modal-content {
          background: white;
          border-radius: 20px;
          width: 100%;
          max-width: 700px;
          max-height: 90vh;
          overflow-y: auto;
          position: relative;
          transform: scale(0.7) translateY(50px);
          transition: all 0.3s ease;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      }

      .modal-overlay.active .modal-content {
          transform: scale(1) translateY(0);
      }

      .modal-header {
          background: linear-gradient(135deg, var(--color) 0%, #078a4a 100%);
          color: var(--text-light);
          padding: 30px;
          border-radius: 20px 20px 0 0;
          position: relative;
          overflow: hidden;
      }


      @keyframes shimmer {
          0%, 100% { transform: rotate(0deg); }
          50% { transform: rotate(180deg); }
      }

      .modal-header h2 {
          font-size: 1.8rem;
          margin-bottom: 5px;
          position: relative;
          z-index: 1;
      }

      .modal-header p {
          opacity: 0.9;
          position: relative;
          z-index: 1;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 25px;
          background: rgba(255, 255, 255, 0.2);
          border: none;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          color: var(--text-light);
          font-size: 1.5rem;
          cursor: pointer;
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 2;
      }

      .close-btn:hover {
          background: rgba(255, 255, 255, 0.3);
          transform: rotate(90deg);
      }

      .modal-body {
          padding: 40px;
      }

      .form-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 25px;
          margin-bottom: 25px;
      }

      .form-group {
          display: flex;
          flex-direction: column;
          position: relative;
          overflow: hidden;
      }

      .form-group.full-width {
          grid-column: 1 / -1;
      }

      .form-group label {
          color: var(--text-dark);
          font-weight: 600;
          margin-bottom: 8px;
          font-size: 0.95rem;
      }

      .form-group label .required {
          color: #e74c3c;
      }

      .form-group label i {
          margin-right: 5px;
          color: var(--color);
      }

      .form-control {
          padding: 15px;
          border: 2px solid #e1e8ed;
          border-radius: 10px;
          font-size: 1rem;
          transition: all 0.3s ease;
          background: #fafafa;
      }

      .form-control:focus {
          outline: none;
          border-color: var(--primary-color);
          background: white;
          box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.1);
      }

      .form-control:hover {
          border-color: var(--color);
      }

      select.form-control {
          cursor: pointer;
      }

      textarea.form-control {
          resize: vertical;
          min-height: 100px;
      }

      /* Custom Country Search Dropdown */
      .country-dropdown {
          position: relative;
      }

      .country-search {
          width: 100%;
          padding: 15px;
          border: 2px solid #e1e8ed;
          border-radius: 10px;
          font-size: 1rem;
          transition: all 0.3s ease;
          background: #fafafa;
          cursor: pointer;
      }

      .country-search:focus {
          outline: none;
          border-color: var(--primary-color);
          background: white;
          box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.1);
      }

      .country-list {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: white;
          border: 2px solid #e1e8ed;
          border-top: none;
          border-radius: 0 0 10px 10px;
          max-height: 200px;
          overflow-y: auto;
          z-index: 1000;
          display: none;
      }

      .country-list.active {
          display: block;
      }

      .country-item {
          padding: 12px 15px;
          cursor: pointer;
          transition: background 0.2s ease;
          border-bottom: 1px solid #f0f0f0;
      }

      .country-item:hover {
          background: var(--bg-light);
      }

      .country-item:last-child {
          border-bottom: none;
      }

      .country-item.selected {
          background: var(--primary-color);
          color: var(--text-dark);
      }

      .submit-btn {
          background: linear-gradient(135deg, var(--color) 0%, #078a4a 100%);
          color: var(--text-light);
          border: none;
          padding: 18px 40px;
          font-size: 1.1rem;
          font-weight: 600;
          border-radius: 50px;
          cursor: pointer;
          transition: all 0.3s ease;
          width: 100%;
          position: relative;
          overflow: hidden;
      }

      .submit-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 25px rgba(5, 104, 57, 0.3);
      }

      .submit-btn:disabled {
          opacity: 0.7;
          cursor: not-allowed;
          transform: none;
      }

      .loading-spinner {
          display: none;
          width: 20px;
          height: 20px;
          border: 2px solid transparent;
          border-top: 2px solid var(--text-light);
          border-radius: 50%;
          animation: spin 1s linear infinite;
          margin-right: 10px;
      }

      @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
      }

      .whatsapp-fallback {
          margin-top: 20px;
          padding: 15px;
          background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
          border-radius: 15px;
          text-align: center;
      }

      .whatsapp-fallback p {
          color: white;
          margin-bottom: 10px;
          font-weight: 500;
      }

      .whatsapp-btn {
          background: rgba(255, 255, 255, 0.2);
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 25px;
          cursor: pointer;
          font-weight: 600;
          transition: all 0.3s ease;
      }

      .whatsapp-btn:hover {
          background: rgba(255, 255, 255, 0.3);
          transform: translateY(-1px);
      }

      .success-message {
          display: none;
          text-align: center;
          padding: 40px;
          color: var(--color);
      }

      .success-message .checkmark {
          font-size: 4rem;
          color: var(--primary-color);
          margin-bottom: 20px;
          animation: bounce 0.6s ease;
      }

      @keyframes bounce {
          0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
          40% { transform: translateY(-10px); }
          60% { transform: translateY(-5px); }
      }

      /* Responsive Design */
      @media (max-width: 768px) {

          .form-grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }

          .modal-content {
              margin: 10px;
              max-height: 85vh;
          }

          .modal-header {
              padding: 25px;
          }

          .modal-body {
              padding: 25px;
          }

          .book-now-btn {
              padding: 15px 30px;
              font-size: 1.1rem;
          }
      }

      @media (max-width: 480px) {

          .modal-header h2 {
              font-size: 1.5rem;
          }

          .form-control {
              padding: 12px;
          }

          .submit-btn {
              padding: 15px 30px;
          }
      }


      
            /* Redesigned sidebar button container with center panel positioning */
        .sidebar-button-container {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Modern professional button design */
        .sidebar-button {
            background: linear-gradient(135deg, #cc7f0c 0%, #db4905 100%);
            color: white;
            padding: 18px 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 320px;
            position: relative;
            border-right: 4px solid #0bf52a;
        }

        .sidebar-button:hover {
            opacity: 0;
            transform: translateX(20px) translateY(-50%);
        }

        /* Professional logo with SafariBookings colors */
        .safari-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        /* Centered hover panel with professional SafariBookings design */
        .hover-panel {
            position: fixed;
            left: 27%;
            top: -120%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            width: 480px;
            max-height: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .sidebar-button-container:hover .hover-panel {
            opacity: 1;
            visibility: visible;
        }
        .safari-logo img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .partner-text {
            display: inline;
            }
        /* Professional header section */
        .panel-headers {
            background: linear-gradient(135deg, #f58e07 0%, #db5314 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .panel-headers h3 {
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .panel-headers p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close-btn:hover {
            opacity: 1;
        }

        /* Trust indicators section */
        .trust-section {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #1f2937;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #166534;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Professional reviews section matching SafariBookings design */
        .reviews-section {
            padding: 25px;
            max-height: 260px;
            overflow-y: auto;
        }

        .review {
            margin-bottom: 20px;
            padding: 20px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .reviewer-details {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .review-stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .review-score {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-meta {
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 8px;
        }

        /* Professional action section */
        .action-section {
            max-height: 200px;
            padding: 20px 15px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .review-count {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .action-button {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }

        /* Custom scrollbar for reviews */
        .reviews-section::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-section::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-button {
                min-width: 80px;
                font-size: 14px;
                padding: 15px 20px;
            }
            
            .hover-panel {
                left: -180%;
                width: 90vw;
                max-width: 500px;
                max-height: 80vh;
            }
              .partner-text {
                display: none;
            }
        
        }