        body {
            font-family: 'Raleway', serif;
            color: #2b1e16;
            background: linear-gradient(135deg, #fffaf0, #f0e4d7);
            line-height: 1.6;
        }

.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
      
        /* Hero Section */
        .hero-section {
            min-height: 550px;
            display: flex;
            /*margin-top: 60px;*/
        }
        .hero-left {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../images/safari/lion-4.jpg') center/cover no-repeat;
            padding: 30px;
        }
        .hero-left h1 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #f4d35e;
            text-align: center;
            text-shadow: 0 2px 6px rgba(0,0,0,0.7);
            margin: 0;
        }
        .hero-title{
            margin-top: 150px;
        }
        .hero-left p {
            font-size: 1.2rem;
            color: #fffaf0;
            max-width: 600px;
            text-align: center;
        }
        .hero-right {
            flex: 1;
            padding: 30px;
            background: #fffaf0;
        }
        .hero-right p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin: 0 0 12px;
        }
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                min-height: 400px;
            }
            .hero-left {
                order: 1;
                min-height: 300px;
            }
            .hero-right {
                order: 2;
            }
            .hero-left h1 {
                font-size: 1.5rem;
            }
        }
        /* Floating Navigation */
        .nav-menu {
            background: rgba(255,250,240,0.95);
            padding: 15px;
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #b89778;
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .nav-menu.visible {
            opacity: 1;
            visibility: visible;
        }
        .nav-menu a {
            display: block;
            color: #2b1e16;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            padding: 8px 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            color: #f4d35e;
            background: rgba(184,151,120,0.2);
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                font-size: 0.3rem;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                background: rgba(255,250,240,0.95);
                padding: 1px;
                border-radius: 0;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
                border-bottom: 1px solid #b89778;
                z-index: 900;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }
            .nav-menu.visible {
                opacity: 1;
                visibility: visible;
            }
            .nav-menu a {
                margin: 5px 10px;
                font-size: 0.85rem;
                padding: 5px 10px;
            }
        }
        /* General Section Styling */
        section {
             /*  padding: 80px 0 60px; Increased top padding to account for header (60px) + 5px buffer */
            scroll-margin-top: 80px; /* Offset for anchor links to clear header and nav */
        }
        h2{
            font-family: 'Cinzel', serif; color: #2b1e16;
        }
        .section-title h2,h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: #b89778;
            text-align: center;
            margin-bottom: 10px;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #2b1e16;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        /* Tour Cards for Recommended Section */
        .tour-card {
            background: #fffaf0;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            position: relative;
            margin: 10px 15px;
            min-height: 200px;
        }
        .tour-card:hover {
            transform: translateY(-8px);
        }
        .tour-card img {
            width: 40%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px 0 0 15px;
        }
        .tour-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .tour-card-body h5 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: #2b1e16;
            margin-bottom: 10px;
        }
        .tour-card-body p {
            font-size: 0.95rem;
            color: #2b1e16;
            margin-bottom: 8px;
        }
        .tour-card-body ul {
            font-size: 0.9rem;
            color: #2b1e16;
            margin-bottom: 10px;
            padding-left: 20px;
        }
        .tour-card-price {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #b89778;
            color: #fffaf0;
            padding: 5px 10px;
            border-radius: 10px;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .read-more, .view-btn {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 20px;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .view-btn {
            border: 1px solid #b89778;
        }
        .read-more:hover, .view-btn:hover {
            background: rgba(184,151,120,0.2);
            color: #f4d35e;
        }
        /* Tabs Styling */
        .tour-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        .tour-tab {
            background: #fffaf0;
            color: #2b1e16;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #b89778;
        }
        .tour-tab.active {
            background: #b89778;
            color: #fffaf0;
        }
        .tour-tab:hover {
            background: #f4d35e;
            color: #2b1e16;
        }
        .tour-content {
            display: none;
        }
        .tour-content.active {
            display: block;
        }
        .view-more {
            display: block;
            text-align: center;
            margin-top: 20px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            color: #b89778;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .view-more:hover {
            color: #f4d35e;
        }
         .package-card-vertical:hover {
        transform: translateY(-12px) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    }
    .package-card-vertical:hover img {
        transform: scale(1.1) !important;
    }
    .package-card-vertical:hover .package-hover-effect {
        opacity: 1 !important;
    }
    .package-card-vertical .package-overlay {
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    .package-card-vertical:hover .package-overlay {
        opacity: 1;
    }

    /* Parallax Background */
    .parallax-bg {
        transform: translate3d(0, 0, 0);
        will-change: transform;
        background-attachment: fixed; /* Fallback for browsers that don't support JS parallax */
    }

    /* Parallax Image in Cards */
    .parallax-img {
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .package-card-vertical {
            height: auto !important;
        }
        .package-img-wrapper {
            height: auto !important;
        }
        .package-body {
            padding: 15px !important;
        }
        .package-body h5 {
            font-size: 1.3rem !important;
        }
        .package-body p {
            font-size: 0.85rem !important;
        }
        .package-body ul {
            font-size: 0.8rem !important;
        }
        .package-badge {
            font-size: 0.75rem !important;
            padding: 4px 8px !important;
        }
        /* Disable parallax on mobile for performance */
        .parallax-bg {
            background-attachment: scroll !important;
        }
        .parallax-img {
            transform: none !important;
        }
    }
        @media (max-width: 768px) {
            .tour-card {
                flex-direction: column;
                align-items: flex-start;
                margin: 10px 10px;
            }
            .tour-card img {
                width: 100%;
                height: 150px;
                border-radius: 15px 15px 0 0;
            }
            .tour-card-price {
                top: 5px;
                right: 5px;
                font-size: 0.8rem;
            }
        }
        /* More Packages Section - Redesigned with Vertical Cards */
        .more-packages {
            background: linear-gradient(180deg, #fffaf0 0%, #f0e4d7 100%);
            padding: 80px 0 60px; /* Adjusted top padding for header + buffer */
            position: relative;
            overflow: hidden;
            height: auto;
        }
        .more-packages .section-title h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            color: #f4d35e;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }
        .more-packages .section-title p {
            color: #2b1e16;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 20px auto;
        }
        .package-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 500px;
            width: 100%;
            max-width: 350px;
            margin: 15px auto;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: #fffaf0;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        .package-card img {
            width: 100%;
            height: 60%;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            transition: transform 0.5s ease;
        }
        .package-card:hover img {
            transform: scale(1.1);
        }
        .package-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(43,30,22,0.1), rgba(43,30,22,0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: #fffaf0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .package-card:hover .package-overlay {
            opacity: 1;
        }
        .package-overlay h5 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #f4d35e;
            margin-bottom: 10px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        .package-overlay p {
            font-size: 0.9rem;
            margin-bottom: 8px;
            opacity: 0;
            transition: opacity 0.4s ease 0.2s;
        }
        .package-card:hover .package-overlay p {
            opacity: 1;
        }
        .package-overlay .package-price {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            color: #b89778;
            background: rgba(255,250,240,0.9);
            padding: 5px 12px;
            border-radius: 15px;
            position: absolute;
            top: 15px;
            right: 15px;
        }
        .package-overlay a {
            color: #fffaf0;
            background: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            align-self: flex-start;
            opacity: 0;
            transition: opacity 0.4s ease 0.3s;
        }
        .package-card:hover .package-overlay a {
            opacity: 1;
        }
        .package-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
        }
        .package-content {
            padding: 15px;
            text-align: left;
            background: #fffaf0;
        }
        .package-content p {
            font-size: 0.85rem;
            color: #2b1e16;
            margin-bottom: 5px;
        }
        .package-content ul {
            font-size: 0.8rem;
            color: #2b1e16;
            padding-left: 15px;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .package-card {
                height: 450px;
                max-width: 100%;
            }
            .package-card img {
                height: 50%;
            }
            .package-overlay {
                opacity: 0.8;
            }
            .package-overlay h5 {
                font-size: 1.4rem;
            }
            .package-overlay p {
                font-size: 0.8rem;
                opacity: 1;
            }
            .package-overlay a {
                font-size: 0.8rem;
                padding: 6px 12px;
                opacity: 1;
            }
            .package-content p {
                font-size: 0.8rem;
            }
            .package-content ul {
                font-size: 0.75rem;
            }
        }
        /* Destinations Section - 8 Cards with Hover Effects */
        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            height: 320px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            margin-bottom: 25px;
        }
        .destination-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .destination-card:hover img {
            transform: scale(1.15);
        }
        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(43,30,22,0.92), transparent);
            padding: 25px;
            color: #fffaf0;
            transform: translateY(60%);
            transition: transform 0.4s ease;
        }
        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }
        .destination-overlay h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.7rem;
            margin-bottom: 8px;
            color: #f4d35e;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        .destination-overlay p {
            font-size: 0.95rem;
            margin-bottom: 12px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .destination-card:hover .destination-overlay p {
            opacity: 1;
        }
        .destination-overlay a {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 6px 14px;
            border: 1.5px solid #b89778;
            border-radius: 25px;
            transition: all 0.3s ease;
            opacity: 0;
        }
        .destination-card:hover .destination-overlay a {
            opacity: 1;
        }
        .destination-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
            border-color: #f4d35e;
        }
        @media (max-width: 768px) {
            .destination-card {
                height: 260px;
            }
            .destination-overlay {
                transform: translateY(0);
                padding: 18px;
            }
            .destination-overlay h4 {
                font-size: 1.3rem;
            }
            .destination-overlay p {
                font-size: 0.85rem;
                opacity: 1;
            }
            .destination-overlay a {
                opacity: 1;
                font-size: 0.8rem;
                padding: 5px 12px;
            }
        }
        /* Luxury Accommodations - Creative Grid */
        .accommodation-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 380px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-bottom: 30px;
        }
        .accommodation-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }
        .accommodation-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .accommodation-card:hover img {
            transform: scale(1.12);
        }
        .accommodation-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(43,30,22,0.85), rgba(184,151,120,0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: #fffaf0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .accommodation-card:hover .accommodation-overlay {
            opacity: 1;
        }
        .accommodation-overlay h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #f4d35e;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6);
        }
        .accommodation-overlay p {
            font-size: 1rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        .accommodation-overlay a {
            align-self: flex-start;
            color: #fffaf0;
            background: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .accommodation-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .accommodation-card {
                height: 300px;
            }
            .accommodation-overlay {
                opacity: 1;
                padding: 20px;
            }
            .accommodation-overlay h4 {
                font-size: 1.4rem;
            }
            .accommodation-overlay p {
                font-size: 0.9rem;
            }
            .accommodation-overlay a {
                font-size: 0.85rem;
                padding: 6px 14px;
            }
        }
        /* Travel Style - Creative Card Layout */
        .travel-style-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 350px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            margin-bottom: 25px;
            background: #fffaf0;
        }
        .travel-style-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .travel-style-card img {
            width: 100%;
            height: 50%;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
            transition: transform 0.5s ease;
        }
        .travel-style-card:hover img {
            transform: scale(1.1);
        }
        .travel-style-content {
            padding: 20px;
            text-align: center;
            background: #fffaf0;
        }
        .travel-style-content h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #2b1e16;
            margin-bottom: 10px;
        }
        .travel-style-content p {
            font-size: 0.95rem;
            color: #2b1e16;
            margin-bottom: 12px;
        }
        .travel-style-content ul {
            font-size: 0.9rem;
            color: #2b1e16;
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }
        .travel-style-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        .travel-style-content ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #b89778;
            position: absolute;
            left: 0;
            top: 2px;
        }
        .travel-style-content a {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 8px 16px;
            border: 1.5px solid #b89778;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .travel-style-content a:hover {
            background: #f4d35e;
            color: #2b1e16;
            border-color: #f4d35e;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .travel-style-card {
                height: 400px;
            }
            .travel-style-card img {
                height: 40%;
            }
            .travel-style-content h4 {
                font-size: 1.4rem;
            }
            .travel-style-content p {
                font-size: 0.9rem;
            }
            .travel-style-content ul {
                font-size: 0.85rem;
            }
            .travel-style-content a {
                font-size: 0.85rem;
                padding: 6px 14px;
            }
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #b89778, #f4d35e);
            color: #2b1e16;
            padding: 80px 0 60px; /* Adjusted top padding for header + buffer */
            text-align: center;
        }
        .cta-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
        }
        .cta-btn {
            background: #2b1e16;
            color: #fffaf0;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .cta-btn:hover {
            background: #4a3726;
            color: #f4d35e;
        }
        /* More Tanzania Safari Adventures - Parallax Styling */
        .more-packages {
            background: linear-gradient(180deg, #f0e4d7 0%, #fffaf0 100%);
            position: relative;
            overflow: hidden;
        }
        .parallax-bg {
            transform: translate3d(0, 0, 0);
            will-change: transform;
            background-attachment: fixed;
        }
        .parallax-img {
            transform: translate3d(0, 0, 0);
            will-change: transform;
        }
        .package-card-vertical {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            background: #fffaf0;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .package-card-vertical:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .package-card-vertical:hover img {
            transform: scale(1.1);
        }
        .package-card-vertical:hover .package-hover-effect {
            opacity: 1;
        }
        .package-card-vertical .package-overlay {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .package-card-vertical:hover .package-overlay {
            opacity: 1;
        }
        .package-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .package-badge {
            position: absolute;
            top: 0;
            right: 0;
            margin: 3px;
            padding: 4px 8px;
            background: #b89778;
            color: #fffaf0;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }
        .package-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        @media (max-width: 768px) {
            .package-card-vertical {
                height: auto;
            }
            .package-img-wrapper {
                height: auto;
            }
            .package-body {
                padding: 15px;
            }
            .package-body h5 {
                font-size: 1.3rem;
            }
            .package-body p {
                font-size: 0.85rem;
            }
            .package-body ul {
                font-size: 0.8rem;
            }
            .package-badge {
                font-size: 0.75rem;
                padding: 4px 8px;
            }
            .parallax-bg {
                background-attachment: scroll;
            }
            .parallax-img {
                transform: none;
            }
        }
        /* Footer */
        footer {
            background: #2b1e16;
            color: #fffaf0;
            padding: 50px 0;
        }
        footer .brand-img img {
            height: 40px;
        }
        footer .brand-desc {
            font-size: 0.95rem;
            color: #e0d9c8;
        }
        footer .social-list a {
            color: #b89778;
        }
        footer h6 {
            font-family: 'Cinzel', serif;
            color: #f4d35e;
            font-size: 1.2rem;
        }
        footer .footer-link a {
            color: #e0d9c8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        footer .footer-link a:hover {
            color: #f4d35e;
        }
        footer .footer-bottom {
            padding-top: 20px;
            text-align: center;
        }
        footer .footer-bottom p {
            font-size: 0.9rem;
            color: #e0d9c8;
        }
        footer .footer-bottom a {
            color: #f4d35e;
            text-decoration: none;
        }
        footer .row img {
            height: 60px;
            filter: brightness(0.8);
        }
      .image-card { height: 500px; }
        table { width: 100%; border-collapse: collapse; }
        table, th, td { border: 1px solid black; }
        th, td { font-size: 14px; line-height: 18px; padding: 5px; color: black; text-align: center; }
        th { font-size: 14px; font-weight: 600; color: black; }
        tr:nth-child(even) { color: black; }
        tr ul { list-style: circle; }
        tr ul li { line-height: 30px; margin-left: 30px; list-style-type: disc; text-align: left; }
        .rounded-table { overflow: hidden; }
        caption { padding: 10px; }
        .modal { margin-top: -1%; }
        .btn-outline-primary { border-color: darkgoldenrod; color: darkgoldenrod; }
        .btn-outline-primary:hover { background-color: darkgoldenrod; }
        .modal-content { border-radius: 8px; }
        .modal-header { background-color: #350d05; color: white; }
        .modal-body { padding: 5px; }
        .btn-booking { margin-right: 10px; }
        @media (max-width: 768px) {
            table { margin: 0; width: 100%; border-collapse: collapse; }
            th { font-size: 12px; font-weight: 600; color: black; }
            th, td { font-size: 12px; line-height: 18px; color: black; text-align: center; }
            tr ul li { line-height: 20px; margin-left: 1px; list-style-type: disc; text-align: left; }
            .image-card { height: 230px; width: 100%; }
            .btn-booking { margin-bottom: 10px; }
        }
        .topdest { padding-top: 14px; text-align: left; font-family: sans-serif; }
        .booking-buttons {
            margin-top: 1rem;
            display: block;
            flex-direction: column;
            gap: 0.5rem;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 0.25rem;
            text-decoration: none;
            cursor: pointer;
        }
        .cta-btn:nth-child(1) {
            background-color: #350d05;
            color: white;
            border: 1px solid #350d05;
        }
        .cta-btn:nth-child(1):hover {
            background-color: #2a0a04;
            border-color: #2a0a04;
        }
        .cta-btn:nth-child(2) {
            background-color: transparent;
            color: #350d05;
            border: 1px solid #350d05;
        }
        .cta-btn:nth-child(2):hover {
            background-color: #350d05;
            color: #E69500;
        }
        .cta-btn:nth-child(3) {
            background-color: #FF8C00;
            color: white;
            border: 1px solid #FF8C00;
        }
        .cta-btn:nth-child(3):hover {
            background-color: #CC7000;
            border-color: #CC7000;
        }
        .cta-btn i {
            margin-right: 0.5rem;
        }
        @media (min-width: 992px) {
            .booking-buttons { display: block; }
        }
        .safari-packages .row > div {
            border-right: 3px solid #ddd;
            padding-right: 20px;
            padding-left: 20px;
        }
        .safari-packages .row > div:last-child {
            border-right: none;
        }
        .safari-packages ul li a::before {
            content: "> ";
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
        }
        .safari-packages ul li {
            margin-bottom: 0.5rem;
            text-decoration: underline;
        }
        .safari-packages, .safari-packages a, .safari-packages h3, .safari-packages h2 {
            color: white;
        }
        /* New styles for the creative design */
        .why-rede-section {
            background: linear-gradient(135deg, #1a2e44 0%, #2b1e16 100%);
            padding: 80px 0;
            color: #fff;
        }
        .why-rede-section h2, .destinations-section h2, .experiences-section h2, .testimonials-section h2, .seo-section h2, .mission-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .why-rede-section .feature-card, .destinations-section .destination-card, .experiences-section .experience-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .why-rede-section .feature-card:hover, .destinations-section .destination-card:hover, .experiences-section .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .why-rede-section .feature-icon, .destinations-section .destination-icon, .experiences-section .experience-icon {
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 20px;
        }
        .why-rede-section p, .destinations-section p, .experiences-section p {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .destinations-section {
            background: #fffaf0;
            padding: 80px 0;
        }
        .destinations-section .destination-card {
            position: relative;
            overflow: hidden;
        }
        .destinations-section .destination-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }
        .experiences-section {
            background: linear-gradient(135deg, #2b1e16 0%, #1a2e44 100%);
            padding: 80px 0;
            color: #fff;
        }
        .testimonials-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        .testimonials-section .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .testimonials-section .testimonial-card p {
            font-family: 'Lora', serif;
            font-style: italic;
            font-size: 1.1rem;
            color: #333;
        }
        .testimonials-section .testimonial-author {
            font-family: 'Raleway', sans-serif;
            font-weight: bold;
            color: #2b1e16;
            margin-top: 10px;
        }
        .seo-section {
            background: #fffaf0;
            padding: 80px 0;
        }
        .mission-section {
            background: linear-gradient(135deg, #1a2e44 0%, #2b1e16 100%);
            padding: 80px 0;
            color: #fff;
        }
        .cta-section {
            background: #FFD700;
            padding: 50px 0;
            text-align: center;
        }
        .cta-section .cta-btn {
            background-color: #350d05;
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 5px;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }
        .cta-section .cta-btn:hover {
            background-color: #2a0a04;
        }
        h4{
            font-size: 14px;
            padding: 4px;
        }
        /* Styling for Recommended Luxury Safaris cards */
.new-tour-card {
    display: flex; /* Use flexbox for horizontal layout */
    flex-direction: row; /* Align image and content horizontally */
    align-items: stretch; /* Ensure items stretch to equal height */
    background: #ffffff; /* White background for cards */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden; /* Ensure rounded corners are respected */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cards */
.new-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.new-tour-card .card-img-top {
    width: 40%; /* Image takes 40% of card width */
    object-fit: cover; /* Ensure image fits nicely */
    height: auto; /* Maintain aspect ratio */
}

/* Card body styling */
.new-tour-card .new-tour-card-body {
    width: 60%; /* Card body takes 60% of card width */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out content */
}

/* Price tag styling */
.new-tour-card .new-tour-card-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700; /* Gold background for price */
    color: #2b1e16;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}
/* Styling for Book Now links */
.new-tour-card .read-more {
    display: inline-block;
    background-color: #FFD700; /* Gold background for high visibility */
    color: #2b1e16; /* Dark brown text for contrast */
    padding: 10px 20px; /* Increased padding for button-like appearance */
    border-radius: 5px; /* Rounded corners */
    font-size: 1.1rem; /* Larger text size */
    font-weight: bold; /* Bold text for emphasis */
    text-transform: uppercase; /* Uppercase for prominence */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    margin-top: 15px; /* More spacing above */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.new-tour-card .read-more:hover {
    background-color: #350d05; /* Dark brown background on hover */
    color: #FFFFFF; /* White text on hover for contrast */
    transform: translateY(-2px); /* Slight lift effect on hover */
}
/* Testimonials Section */
.testimonials-section {
    position: relative;
    background: #1a120b; /* Deep charcoal for luxury */
    padding: 80px 0;
    overflow: hidden;
    color: #f8f9fa; /* Light gray text */
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.3; /* Subtle savanna backdrop */
    transform: translateZ(0); /* Enable parallax */
    z-index: 0;
}

/* Container */
.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #FFD700; /* Gold for elegance */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.testimonials-section p.text-center {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: #f8f9fa;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Testimonial Showcase */
.testimonial-showcase {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 400px; /* Fixed height for smooth transitions */
}

/* Hide radio inputs */
.testimonial-showcase input[type="radio"] {
    display: none;
}

/* Testimonial Card */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 25 bànpx;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

/* Active card */
#slide1:checked ~ .testimonial-card[data-slide="1"],
#slide2:checked ~ .testimonial-card[data-slide="2"],
#slide3:checked ~ .testimonial-card[data-slide="3"] {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

/* Client Image */
.testimonial-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FFD700; /* Gold border */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Gold glow */
    transition: transform 0.3s ease;
}

.testimonial-image img:hover {
    transform: scale(1.1); /* Subtle zoom on hover */
}

/* Quote */
.testimonial-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #2b1e16; /* Dark brown */
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 2.5rem;
    color: #FFD700; /* Gold quote mark */
    opacity: 0.5;
}

/* Star Rating */
.testimonial-rating {
    color: #FFD700; /* Gold stars */
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-rating .fa-star {
    margin: 0 2px;
    opacity: 0;
    animation: fadeInStar 0.5s ease forwards;
}

.testimonial-rating .fa-star:nth-child(1) { animation-delay: 0.1s; }
.testimonial-rating .fa-star:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating .fa-star:nth-child(3) { animation-delay: 0.3s; }
.testimonial-rating .fa-star:nth-child(4) { animation-delay: 0.4s; }
.testimonial-rating .fa-star:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInStar {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Author */
.testimonial-author {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #2b1e16;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Navigation Dots */
.testimonial-nav {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #2b1e16; /* Dark brown */
    border: 2px solid #FFD700; /* Gold border */
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

#slide1:checked ~ .testimonial-nav label[for="slide1"],
#slide2:checked ~ .testimonial-nav label[for="slide2"],
#slide3:checked ~ .testimonial-nav label[for="slide3"] {
    background: #FFD700; /* Gold for active dot */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonial-showcase {
        max-width: 90%;
        height: 350px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    .testimonial-quote::before {
        font-size: 2rem;
        top: -10px;
    }
}

@media (max-width: 412px) {
    .testimonials-section h2 {
        font-size: 2rem;
    }
    .testimonials-section p.text-center {
        font-size: 1rem;
    }
    .testimonial-showcase {
        height: 320px;
    }
    .testimonial-card {
        max-width: 95%;
        padding: 15px;
    }
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    .testimonial-quote {
        font-size: 0.9rem;
    }
    .testimonial-quote::before {
        font-size: 1.8rem;
        top: -8px;
    }
    .testimonial-author {
        font-size: 0.9rem;
    }
    .testimonial-nav {
        bottom: -30px;
    }
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}
/* Excellence Section */
.excellence-section {
    background: #fff; /* Clean white background */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #2b1e16; /* Dark brown text */
}

/* Subtle Safari Texture Overlay */
.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/paper-fibers.png') repeat; /* Linen-like texture */
    opacity: 0.1;
    z-index: 0;
}

/* Container */
.excellence-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Image */
.excellence-hero {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.excellence-hero img {
    width: 100%;
    height: 400px; /* Consistent height */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.excellence-hero:hover img {
    transform: scale(1.03); /* Subtle zoom */
}

/* Section Title */
.section-title {
    text-align: left; /* Asymmetrical for uniqueness */
    margin-bottom: 30px;
}

.section-title h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #2b1e16; /* Dark brown */
    border-left: 4px solid #FFD700; /* Gold accent */
    padding-left: 15px;
    margin-bottom: 15px;
}

.section-title p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #2b1e16;
    max-width: 500px;
}

/* Excellence Card */
.excellence-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: cardFadeIn 0.6s ease forwards;
}

.excellence-card:nth-child(1) { animation-delay: 0.2s; }
.excellence-card:nth-child(2) { animation-delay: 0.3s; }
.excellence-card:nth-child(3) { animation-delay: 0.4s; }
.excellence-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes cardFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.excellence-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icon */
.excellence-icon {
    margin-bottom: 12px;
}

.excellence-icon i {
    color: #FFD700; /* Gold */
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.excellence-card:hover .excellence-icon i {
    transform: scale(1.1); /* Subtle icon pulse */
}

/* Card Title */
.excellence-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #2b1e16;
    margin-bottom: 8px;
}

/* Card Text */
.excellence-card p {
    /*font-family: 'Raleway', sans-serif;*/
    font-size: 0.9rem;
    color: #2b1e16;
    line-height: 1.5;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .excellence-hero {
        margin-bottom: 30px;
        order: 1 !important; /* Image on top */
    }
    .section-title {
        text-align: center; /* Center for smaller screens */
    }
    .section-title h2 {
        border-left: none;
        /*border-bottom: 2px solid #FFD700;*/
        padding-bottom: 10px;
    }
    .excellence-hero img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .excellence-section {
        padding: 50px 0;
    }
    .excellence-hero img {
        height: 250px;
    }
    .excellence-card {
        padding: 15px;
    }
    .excellence-icon i {
        font-size: 1.6rem;
    }
    .excellence-card h4 {
        font-size: 1.1rem;
    }
    .excellence-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 412px) {
    .excellence-section {
        padding: 40px 0;
    }
    .excellence-hero img {
        height: 200px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .section-title p {
        font-size: 0.9rem;
        max-width: 90%;
    }
    .excellence-card {
        padding: 12px;
    }
    .excellence-icon i {
        font-size: 1.4rem;
    }
    .excellence-card h4 {
        font-size: 1rem;
    }
    .excellence-card p {
        font-size: 0.8rem;
    }
}
.header .nav-links {
    font-size: 0.5rem;
}


/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .new-tour-card {
        flex-direction: column; /* Stack vertically on small screens */
    }
    .new-tour-card .card-img-top {
        width: 100%; /* Image takes full width */
        height: 200px; /* Fixed height for consistency */
    }
    .new-tour-card .new-tour-card-body {
        width: 100%; /* Card body takes full width */
    }
}
 /* General container styling */
        .features-section {
            background: #f5f5f5; /* Neutral light gray background */
            padding: 60px 0;
            font-family: 'Lora', serif;
        }

        .features-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #2a2a2a; /* Dark gray for text */
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Horizontal card container */
        .features-container {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping for rows */
            justify-content: center; /* Center cards for balanced layout */
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Individual card styling */
        .feature-card {
            background: #ffffff; /* White background for cards */
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1 1 30%; /* Base width for large screens */
            min-width: 250px; /* Minimum width for readability */
            max-width: 360px; /* Cap width to prevent over-stretching */
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Icon styling */
        .feature-icon {
            font-size: 2.5rem;
            color: #4a4a4a; /* Muted gray for icons */
            margin-bottom: 15px;
        }

        /* Card title */
        .feature-card h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #2a2a2a; /* Dark gray for titles */
            margin-bottom: 15px;
        }

        /* Card description */
        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #333; /* Slightly lighter gray for text */
            margin: 0;
        }
        /* Accommodations Section */
.accommodations-section {
    background: #1a120b; /* Deep charcoal for luxury */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #f8f9fa; /* Light gray text */
}

/* Leather Texture Background */
.accommodations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/leather.png') repeat; /* Leather texture */
    opacity: 0.15;
    z-index: 0;
}

/* Container */
.accommodations-section .container {
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: darkgoldenrod; /* Gold */
    position: relative;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 10px;
    /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);*/
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #FFD700; /* Gold underline */
}

.section-title p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
/*    color: #f8f9fa;*/
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Masonry Grid */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Accommodation Card */
.accommodation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4); /* Subtle gold border */
    position: relative;
    height: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

.accommodation-card[data-index="1"] { animation: cardFadeIn 0.6s ease 0.2s forwards; }
.accommodation-card[data-index="2"] { animation: cardFadeIn 0.6s ease 0.3s forwards; }
.accommodation-card[data-index="3"] { animation: cardFadeIn 0.6s ease 0.4s forwards; }
.accommodation-card[data-index="4"] { animation: cardFadeIn 0.6s ease 0.5s forwards; }

@keyframes cardFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.accommodation-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.accommodation-card:hover img {
    transform: scale(1.05); /* Subtle zoom */
}

/* Card Content */
.accommodation-content {
    padding: 20px;
}

.accommodation-content h4 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #2b1e16; /* Dark brown */
    margin-bottom: 10px;
}

.accommodation-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #2b1e16;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .accommodations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .accommodation-card img {
        height: 180px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .section-title p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .accommodations-section {
        padding: 50px 0;
    }
    .accommodation-card {
        padding: 15px;
    }
    .accommodation-card img {
        height: 160px;
    }
    .accommodation-content h4 {
        font-size: 1.2rem;
    }
    .accommodation-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 412px) {
    .accommodations-section {
        padding: 40px 0;
    }
    .accommodations-grid {
        grid-template-columns: 1fr; /* Single column for small screens */
    }
    .accommodation-card img {
        height: 140px;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .section-title p {
        font-size: 0.9rem;
        max-width: 90%;
    }
    .accommodation-content h4 {
        font-size: 1.1rem;
    }
    .accommodation-content p {
        font-size: 0.8rem;
    }
}

        /* Large screens: 3 cards in first row, 2 in second row */
        @media (min-width: 992px) {
            .features-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }
            .feature-card:nth-child(-n+3) {
                flex: 1 1 30%; /* Three cards in first row */
            }
            .feature-card:nth-child(n+4) {
                flex: 1 1 45%; /* Two cards in second row, wider to balance */
                max-width: 540px; /* Slightly wider for two-card row */
            }
            .features-container::after {
                content: '';
                flex: 1 1 30%; /* Empty space to align two cards in second row */
                max-width: 360px;
                visibility: hidden; /* Hide the placeholder */
            }
        }

        /* Medium screens: Two cards per row */
        @media (max-width: 991px) {
            .feature-card {
                flex: 1 1 45%; /* Two cards per row */
                margin-bottom: 20px;
            }
        }

        /* Small screens: One card per row */
        @media (max-width: 576px) {
            .feature-card {
                flex: 1 1 100%; /* One card per row */
                margin-bottom: 20px;
            }
        }