/* Egret Wildlife Tours - Sunset Theme Color Palette */

:root {
    /* Sunset Primary Colors */
    --primary-color: #FF6B35; /* Vibrant Sunset Orange - main brand color */
    --secondary-color: #F7931E; /* Warm Golden Orange - accent */
    --accent-color: #FFD23F; /* Golden Yellow - bright highlights */
    --deep-sunset: #E85A4F; /* Deep Coral Red - dramatic accents */
    
    /* Sunset Gradient Colors */
    --sunset-pink: #FF8A80; /* Soft Pink - gentle sunset tones */
    --sunset-purple: #8E24AA; /* Purple - twilight sky */
    --sunset-gold: #FFC107; /* Rich Gold - sunlight reflections */
    --sunset-amber: #FF9800; /* Warm Amber - golden hour */
    
    /* Supporting Sunset Colors */
    --cream: #FFF8E7; /* Warm Cream - light backgrounds */
    --warm-gray: #8D6E63; /* Warm Gray - text and subtle elements */
    --dark-navy: #2C3E50; /* Deep Navy - headers and contrast */
    --soft-peach: #FFCCBC; /* Soft Peach - gentle backgrounds */
}

/* Override primary theme colors with sunset palette */
.theme-btn, .theme-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease !important;
}

.theme-btn:hover {
    background: linear-gradient(135deg, var(--deep-sunset), var(--sunset-amber)) !important;
    border-color: var(--deep-sunset) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(232, 90, 79, 0.4) !important;
}

/* Header and navigation colors with sunset theme */
.header-1, .header-2, .header-3 {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-color) 100%) !important;
    padding: 10px 0 !important;
    min-height: 60px !important;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2) !important;
}

.header-main {
    padding: 8px 0 !important;
}

.main-menu ul li a {
    color: white !important;
    padding: 8px 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.main-menu ul li a:hover {
    color: var(--accent-color) !important; /* Golden yellow hover effect */
    text-shadow: 0 0 8px rgba(255, 210, 63, 0.5) !important;
}

.main-menu ul li.active a {
    color: var(--accent-color) !important; /* Golden yellow active state */
    text-shadow: 0 0 8px rgba(255, 210, 63, 0.5) !important;
}

/* Logo styling for reduced navbar */
.logo-2 img {
    max-height: 42px !important; /* Increased from 35px to 42px */
    width: auto !important; /* Maintain aspect ratio */
    object-fit: contain !important; /* Prevent stretching */
}

/* Offcanvas logo styling */
.offcanvas__logo img {
    max-height: 45px !important; /* Increased from 40px to 45px */
    width: auto !important;
    object-fit: contain !important;
}

/* Footer logo styling */
.footer-section .widget-head img {
    max-height: 55px !important; /* Increased from 50px to 55px */
    width: auto !important;
    object-fit: contain !important;
}

/* Header right elements with sunset theme */
.header-right .search-icon {
    color: white !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
}

.header-right .search-icon:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 8px rgba(255, 210, 63, 0.5) !important;
}

/* Hamburger menu styling */
.header__hamburger .header-bar img {
    filter: brightness(0) invert(1) !important; /* Make hamburger icon white */
}

/* Hero section styling with sunset theme */
.hero-section-2 .hero-content h1 {
    color: var(--dark-navy) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-section-2 .sub-title {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1)) !important;
    backdrop-filter: blur(5px) !important;
}

/* Section titles and subtitles with sunset colors */
.section-title .sub-title {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1)) !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
}

.section-title h2 {
    color: var(--dark-navy) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* Background sections with sunset theme */
.section-bg {
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%) !important;
}

.theme-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    box-shadow: inset 0 0 50px rgba(255, 107, 53, 0.1) !important;
}

/* Statistics section with sunset theme */
.statistics-section.theme-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.statistics-section .statistics-content h2 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.statistics-section .statistics-content p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Counter section with sunset gradient */
.counter-section {
    background: linear-gradient(135deg, var(--sunset-purple) 0%, var(--primary-color) 100%) !important;
}

.counter-content h2 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.counter-content p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* About section features with sunset accents */
.about-items .content h5 {
    color: var(--primary-color) !important;
}

/* Destination cards with sunset theme */
.new-destination-items .content h3 a {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

.new-destination-items .content p {
    color: var(--soft-peach) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Featured tour cards with sunset colors */
.feature-tour-content h4 a {
    color: var(--dark-navy) !important;
}

.feature-tour-content h4 a:hover {
    color: var(--primary-color) !important;
}

.feature-tour-content h5 {
    color: var(--sunset-amber) !important;
    font-weight: 600 !important;
}

/* Choose us section numbers with golden accents */
.choose-us-items .number {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.4) !important;
}

.choose-us-items .content h4 {
    color: var(--dark-green) !important;
}

/* Navigation tabs */
.nav-link {
    color: var(--dark-green) !important;
}

.nav-link.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Form elements */
.form-clt input, .single-select {
    border-color: var(--light-sage) !important;
}

.form-clt span {
    color: var(--dark-green) !important;
}

/* Footer styling with sunset theme */
.footer-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--sunset-purple) 100%) !important;
}

/* Offcanvas styling with sunset theme */
.offcanvas__info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.offcanvas__contact h4 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.offcanvas__contact-text a {
    color: white !important;
    transition: all 0.3s ease !important;
}

.offcanvas__contact-text a:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 8px rgba(255, 210, 63, 0.5) !important;
}

.offcanvas__close button {
    color: white !important;
    transition: all 0.3s ease !important;
}

.offcanvas__close button:hover {
    color: var(--accent-color) !important;
}

/* Preloader styling with sunset theme */
.preloader {
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-peach) 100%) !important;
}

.letters-loading {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3) !important;
}

/* Social icons with sunset gradients */
.social-icon a {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3) !important;
}

.social-icon a:hover {
    background: linear-gradient(135deg, var(--deep-sunset), var(--sunset-amber)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(232, 90, 79, 0.4) !important;
}

/* Video section with sunset accents */
.video-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--sunset-gold)) !important;
    box-shadow: 0 4px 15px rgba(255, 210, 63, 0.3) !important;
}

/* Instagram section */
.instagram-banner h2 {
    color: white !important;
}

/* Update news section */
.news-card-items-2 {
    border-color: var(--light-sage) !important;
}

/* Additional safari-themed styling */
.safari-accent {
    color: var(--accent-color) !important;
}

.earth-tone {
    color: var(--earth-color) !important;
}

.savanna-bg {
    background-color: var(--savanna-gold) !important;
}

/* Additional experience-themed styling */
.experience-accent {
    color: var(--accent-color) !important;
}

/* Smooth scrolling for one-page site */
html {
    scroll-behavior: smooth !important;
}

section {
    scroll-margin-top: 100px;
}

/* Carousel styling with sunset theme */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease-in-out;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 15;
}

.carousel-indicators button {
    background-color: var(--accent-color) !important;
    border: 2px solid white !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(255, 210, 63, 0.4) !important;
}

.carousel-indicators .active {
    background-color: white !important;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6) !important;
}

.carousel-control-prev, .carousel-control-next {
    color: var(--accent-color) !important;
    font-size: 2rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero content overlay with sunset backdrop */
.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 3rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-content-overlay .sub-title {
    background: linear-gradient(135deg, var(--accent-color), var(--sunset-gold));
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-navy) !important;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 210, 63, 0.3);
}

/* Navigation updates for one-page */
.nav-link-scroll {
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link-scroll:hover {
    color: var(--primary-color) !important;
}

/* Custom African pattern background (optional) */
.african-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(218, 165, 32, 0.05) 10px,
        rgba(218, 165, 32, 0.05) 20px
    );
    pointer-events: none;
}

/* Additional navbar styling for army green theme and reduced height */
.mega-menu-wrapper {
    padding: 0 !important;
}

.container-fluid {
    padding: 0 15px !important;
}

/* Offcanvas styling to match */
.offcanvas__info {
    background-color: var(--primary-color) !important;
}

.offcanvas__contact h4 {
    color: white !important;
}

.offcanvas__contact-text a {
    color: white !important;
}

.offcanvas__contact-text a:hover {
    color: var(--savanna-gold) !important;
}

.offcanvas__close button {
    color: white !important;
}

/* Responsive navbar height adjustments */
@media (max-width: 991px) {
    .header-1, .header-2, .header-3 {
        min-height: 55px !important;
        padding: 8px 0 !important;
    }
    
    .logo-2 img {
        max-height: 36px !important; /* Increased from 30px to 36px */
        width: auto !important;
        object-fit: contain !important;
    }
    
    .offcanvas__logo img {
        max-height: 40px !important; /* Increased from 35px to 40px */
        width: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 768px) {
    .header-1, .header-2, .header-3 {
        min-height: 50px !important;
        padding: 6px 0 !important;
    }
    
    .logo-2 img {
        max-height: 32px !important; /* Increased from 28px to 32px */
        width: auto !important;
        object-fit: contain !important;
    }
    
    .offcanvas__logo img {
        max-height: 36px !important; /* Increased from 32px to 36px */
        width: auto !important;
        object-fit: contain !important;
    }
}

/* New Destination Section Styles */
.destination-content h3 a {
    color: var(--black);
    margin: 0 0 10px;
    transition: 0.3s;
}

/* Tourism Services Section Styles with Sunset Theme */
.services-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-peach) 100%);
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/plane-shape1.png') no-repeat top right,
                url('../img/plane-shape2.png') no-repeat bottom left;
    background-size: 150px auto, 120px auto;
    opacity: 0.1;
    pointer-events: none;
}

.services-wrapper {
    position: relative;
    z-index: 2;
}

.service-category {
    margin-bottom: 60px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: white;
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-item {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: all 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-icon i {
    color: white;
    font-size: 20px;
}

.service-item:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--deep-sunset) 0%, var(--sunset-amber) 100%);
    box-shadow: 0 6px 20px rgba(232, 90, 79, 0.4);
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 20px 25px 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-item p {
    color: var(--warm-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 25px 25px;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .category-title {
        font-size: 24px;
    }
    
    .category-title i {
        font-size: 28px;
        width: 55px;
        height: 55px;
    }
    
    .service-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .service-category {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 22px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
    
    .service-icon i {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-category {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-title i {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }
    
    .service-image {
        height: 140px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
    }
    
    .service-icon i {
        font-size: 16px;
    }
    
    .service-item h4 {
        font-size: 16px;
        margin: 15px 20px 10px;
    }
    
    .service-item p {
        font-size: 13px;
        margin: 0 20px 20px;
    }
}

/* Animation enhancements */
.service-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choose Us Section Styles */

/* Adventure CTA Section Styles */
.adventure-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.adventure-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/video-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 93, 63, 0.9) 0%, rgba(52, 73, 94, 0.85) 100%);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-elements .element-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
}

.floating-elements .element-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.adventure-cta-wrapper {
    position: relative;
    z-index: 4;
}

.cta-content-new {
    padding-right: 2rem;
}

.cta-content-new .sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-content-new .sub-title i {
    color: #f39c12;
    font-size: 18px;
}

.cta-content-new h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content-new p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.feature-item i {
    color: #f39c12;
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.theme-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.theme-btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-image-new {
    position: relative;
    text-align: center;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content .discount {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-content .text {
    font-size: 14px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.badge-content small {
    font-size: 10px;
    opacity: 0.9;
    display: block;
    line-height: 1;
}

.experience-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item {
    text-align: center;
    color: var(--primary);
}

.stat-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 12px;
    color: #666;
    line-height: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Statistics Strip Section Styles */
.statistics-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    padding: 80px 0;
}

.statistics-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.statistics-items {
    flex: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
    color: white;
    font-size: 28px;
}

.statistics-items:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.statistics-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.statistics-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 991px) {
    .statistics-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .statistics-items {
        flex: 0 0 45%;
        min-width: 200px;
    }
    
    .statistics-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .statistics-items {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .statistics-content h2 {
        font-size: 36px;
    }
    
    .statistics-content p {
        font-size: 14px;
    }
}

/* Choose Us Section with Sunset Background */
.choose-us-section {
    position: relative;
}

.choose-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(255, 107, 53, 0.3));
    z-index: 1;
}

.choose-us-section .container {
    position: relative;
    z-index: 2;
}

.choose-us-section .sub-title {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5) !important;
}

.choose-us-section h2 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.choose-us-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.choose-us-section .choose-us-items .number {
    color: var(--accent-color) !important;
    text-shadow: 0 0 15px rgba(255, 210, 63, 0.6) !important;
}

.choose-us-section .choose-us-items h4 {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.choose-us-section .choose-us-items p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* New Destination Section Styles */
