        /* style.css - Hidden Wonders Safaris */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fffef7;
            color: #2c2a24;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .logo, .nav-links a, .btn, .section-title {
            font-family: 'Playfair Display', serif;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Cards & UI Elements */
        .card, .package-card, .testimonial-card, .service-card, .destination-card, .blog-card {
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .card:hover, .package-card:hover, .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 40px -16px rgba(0,0,0,0.12);
        }

        .btn {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 12px 28px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            transition: 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #e67e22;
            color: #e67e22;
        }

        .btn-outline:hover {
            background: #e67e22;
            color: white;
        }

        .btn:hover {
            background: #cf711f;
            transform: scale(0.97);
        }

        .btn-small {
            padding: 8px 20px;
            font-size: 0.85rem;
        }

        /* --- NEW TOP BAR STYLES (Professional Social Media Bar) --- */
        .top-bar {
            background: #1f2a1b;
            color: #ece3d0;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(236, 227, 208, 0.15);
            position: relative;
            z-index: 101;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .top-contact-info {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .top-contact-info span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }
        .top-contact-info i {
            color: #e67e22;
            font-size: 0.9rem;
            width: 20px;
        }
        .social-top {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .social-top a {
            color: #ece3d0;
            font-size: 1.2rem;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            transition: 0.2s;
        }
        .social-top a:hover {
            color: #e67e22;
            background: rgba(230, 126, 34, 0.2);
            transform: translateY(-2px);
        }
        /* Adjust main header to sit right below top bar */
        header {
            background: #ffffffdd;
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
            border-bottom: 1px solid #f0ede5;
        }
        /* Sticky behavior for both bars: top-bar also sticky? Make it work seamlessly */
        .top-bar {
            position: relative;
            top: 0;
            width: 100%;
        }
        /* Adjust header sticky offset? No need, top-bar is not sticky, just static. If you want both sticky, uncomment but usually top bar stays */
        
        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo h2 {
            font-size: 1.8rem;
            color: #2c5e2e;
        }
        .logo span {
            color: #e67e22;
            font-weight: 700;
        }
        .logo p {
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #3a352a;
            transition: 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #e67e22;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(105deg, #faf7ef 0%, #fff3e0 100%);
            padding: 60px 0 80px;
            border-radius: 0 0 64px 64px;
        }
        .hero-grid {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .hero-content {
            flex: 1;
        }
        .hero-content h1 {
            font-size: 3.4rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #2c5e2e;
        }
        .hero-image {
            flex: 1;
            border-radius: 48px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
        }
        .hero-image img {
            width: 100%;
            display: block;
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 16px;
            color: #2c5e2e;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
            color: #5e5a4f;
        }

        /* Grids */
        .dest-grid, .packages-grid, .services-grid, .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .destination-card, .service-card {
            text-align: center;
            padding: 32px 16px;
            background: #fffbf0;
        }
        .destination-card i, .service-card i {
            font-size: 3rem;
            color: #e67e22;
            margin-bottom: 20px;
        }
        .destination-card h3, .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        /* Package Cards */
        .package-card {
            padding: 0;
            overflow: hidden;
        }
        .package-img {
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        .package-info {
            padding: 24px;
        }
        .package-price {
            font-weight: 800;
            color: #e67e22;
            font-size: 1.4rem;
            margin: 12px 0;
        }

        /* Blog Cards */
        .blog-card {
            overflow: hidden;
        }
        .blog-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        .blog-content {
            padding: 24px;
        }
        .blog-date {
            color: #e67e22;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .blog-title {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        /* Forms */
        .booking-form, .contact-form {
            background: white;
            padding: 40px;
            border-radius: 48px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        input, select, textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 48px;
            border: 1px solid #ddd8c8;
            font-family: 'Inter', sans-serif;
            background: #fefcf5;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #e67e22;
        }

        /* Payment Section */
        .payment-methods {
            background: #2c5e2e10;
            border-radius: 48px;
            padding: 32px;
            margin-top: 32px;
        }
        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            font-size: 2.4rem;
            color: #2c5e2e;
            margin: 24px 0;
        }
        .payment-icons i, .payment-icons span {
            font-size: 2.2rem;
        }

        /* Testimonials */
        .testimonial-card {
            padding: 28px;
            background: #fffcf3;
        }
        .rating {
            color: #f4b942;
            margin: 12px 0;
        }

        /* Footer */
        footer {
            background: #1f2a1b;
            color: #ece3d0;
            padding: 48px 0 24px;
            border-radius: 48px 48px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
            gap: 40px;
        }
        .social-icons a {
            color: #f3cf9a;
            font-size: 1.6rem;
            margin-right: 20px;
            transition: 0.2s;
        }
        .social-icons a:hover {
            color: #e67e22;
        }

        /* Responsive */
        @media (max-width: 800px) {
            .nav-flex {
                flex-direction: column;
                gap: 16px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 50px 0;
            }
            .booking-form, .contact-form {
                padding: 24px;
            }
            .top-bar .container {
                flex-direction: column;
                text-align: center;
            }
            .top-contact-info {
                justify-content: center;
            }
        }
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .why-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 28px;
        }
        .why-card i {
            font-size: 2.5rem;
            color: #e67e22;
            margin-bottom: 16px;
        }
        /* additional smoothness */
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #e67e22;
        }