/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafdff;
    color: #333;
    padding-top: 0px; /* Account for top bar height */
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #ff8c06 0%, #e67e22 100%);
    color: #f3e7d4;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #7a4a2b;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.switchers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.switcher {
    position: relative;
    cursor: pointer;
}

.switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    color: #f3e7d4;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
    background: rgba(243, 231, 212, 0.1);
    border: 1px solid rgba(243, 231, 212, 0.2);
}

.switcher-btn:hover {
    background: rgba(243, 231, 212, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.switcher-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.switcher:hover .switcher-btn i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 180px;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    border: 1px solid #eaeaea;
    margin-top: 5px;
}

.switcher:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f0f7e9 0%, #e8f4e6 100%);
    color: #e67e22;
    border-left-color: #e67e22;
    padding-left: 22px;
}

.dropdown-item:active {
    transform: scale(0.98);
}

.flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 30px;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    color: #f3e7d4;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
    background: rgba(243, 231, 212, 0.1);
    border: 1px solid rgba(243, 231, 212, 0.2);
    cursor: pointer;
}

.review-badge:hover {
    background: rgba(243, 231, 212, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-badge i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.review-badge:hover i {
    transform: scale(1.1);
}

.review-badge.google-review i {
    color: #4285F4;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.review-badge.tripadvisor-review i {
    color: #34E0A1;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.dollar-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3e7d4 0%, #e8d9c4 100%);
    color: #ff8c06;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-nav-link {
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #f3e7d4;
    text-decoration: none;
}

.top-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f3e7d4, #ffd8a9);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.top-nav-link:hover {
    color: #ffd8a9;
    transform: translateY(-1px);
}

.top-nav-link:hover:after {
    width: 100%;
}

/* Wavy Header CSS */
.main-header {
    background-color: #f3e7d4;
    box-shadow: none;
    position: sticky;
    top: 0px;
    z-index: 999;
    width: 100%;
    transition: all 0.3s ease;
}

/* Keep your existing wave animation */
.main-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        radial-gradient(ellipse at 50% -10px, rgba(0,0,0,0.1) 15px, transparent 16px),
        radial-gradient(ellipse at 30% -5px, rgba(0,0,0,0.08) 12px, transparent 13px),
        radial-gradient(ellipse at 70% -7px, rgba(0,0,0,0.09) 14px, transparent 15px);
    background-size: 100px 20px;
    background-position: 0 0, 25px 0, 50px 0;
    animation: waveMove 8s linear infinite;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

.logo {
    flex: 0 0 auto;
    z-index: 1001;
}

.logo img {
    height: 170px;
    width: auto;
    transition: all 0.3s ease;
    margin-top: -36px;
    margin-bottom: -36px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #7a4a2b;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 30px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #e67e22;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e67e22;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after {
    width: 100%;
}

/* Fixed Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background-color: #f3e7d4;
    box-shadow: none;
    border-radius: 0px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 0px solid #f1f2f6;
    pointer-events: none;
    /* Fix: Add padding top and negative margin to create hover bridge */
    padding-top: 20px;
    margin-top: -10px;
}

/* Create invisible hover bridge */
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-item.hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-dropdown-item {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    height: 140px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.mega-dropdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mega-dropdown-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-dropdown-item:hover img {
    transform: scale(1.05);
}

.mega-dropdown-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.mega-dropdown-category {
    grid-column: span 4;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 6px;
}

/* Rest of your existing styles remain the same */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-expandable {
    width: 0px;
    height: 36px;
    border: none;
    border-radius: 50%;
    padding: 0;
    transition: all 0.4s ease;
    font-size: 14px;
    outline: none;
    padding-left: 36px;
    opacity: 0;
    background: transparent;
    cursor: pointer;
}

.search-expandable.active,
.search-expandable:focus {
    width: 220px;
    border-radius: 25px;
    border-color: #e67e22;
    opacity: 1;
    padding-left: 40px;
    background: #fff;
}

.search-icon-absolute {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-expandable.active + .search-icon-absolute,
.search-expandable:focus + .search-icon-absolute {
    color: #e67e22;
}

.request-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    font-family: poppins, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35);
    background: #d35400;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #e67e22;
    transition: color 0.3s ease;
    padding: 8px;
}

.mobile-toggle:hover {
    color: #d35400;
}

/* Reset and base styles */
.premium-hero-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero section styling */
.premium-hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url('images/DSC_1512.JPG') no-repeat center center/cover;
    padding: 20px;
    position: relative;
}

.hero-content-wrapper {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-main-heading {
    font-family: "Finger Paint", cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    margin-top: -130px; /* Pushed up */
    transform: translateY(-15px); /* Additional push up */
}

.hero-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    margin-top: -20px; /* Reduced push up */
    transform: translateY(-5px); /* Reduced push up */
}

/* Desktop Safari Planner */
.safari-planner-container {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px; /* Reduced from 12px */
    padding: 12px 15px; /* Reduced from 20px */
    box-shadow: none; /* Reduced shadow */
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px; /* Added for better spacing */
}

.planner-field {
    flex: 1;
    min-width: 120px; /* Reduced from 140px */
    margin: 0 5px; /* Reduced from 10px */
    text-align: left;
}

.planner-label {
    display: block;
    font-family: 'poppins', sans-serif;
    font-size: 0.75rem; /* Reduced from 0.85rem */
    color: #4a4a4a;
    margin-bottom: 5px; /* Reduced from 8px */
    font-weight: 500;
}

.planner-input {
    width: 100%;
    padding: 8px 10px; /* Reduced from 12px 15px */
    border: 1px solid #e0e0e0;
    border-radius: 6px; /* Reduced from 8px */
    font-family: 'poppins', sans-serif;
    font-size: 0.9rem; /* Reduced from 1rem */
    transition: all 0.3s ease;
    background: white;
}

.planner-input:hover {
    border-color: #c0c0c0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08); /* Reduced shadow */
}

.planner-input:focus {
    outline: none;
    border-color: #8a9a5b;
    box-shadow: 0 1px 8px rgba(138, 154, 91, 0.25); /* Reduced shadow */
}

.planner-search-btn {
    background: #e67e22;
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-top: 20px;
    color: white;
    box-shadow: none;
}

.planner-search-btn:hover {
    background: #7a4a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.planner-search-btn:active {
    transform: translateY(0);
}

/* Mobile Plan Button */
.mobile-plan-btn {
    display: none;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-plan-btn:hover {
    background: #7a4a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Mobile Modal */
.mobile-planner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-planner-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #333;
}

.mobile-planner-form {
    padding: 25px;
}

.modal-submit-btn {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    gap: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-main-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
    
    .desktop-planner {
        display: none;
    }
    
    .mobile-plan-btn {
        display: block;
    }
    
    .safari-planner-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .planner-field {
        width: 100%;
        margin: 10px 0;
        min-width: unset;
    }
    
    .planner-search-btn {
        width: 100%;
        margin: 10px 0 0 0;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-main-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .premium-hero-section {
        padding: 15px;
    }
    
    .modal-content {
        margin: 0 10px;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .mobile-planner-form {
        padding: 20px;
    }
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1005;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fafdff;
    z-index: 2000;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: none;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #7a4a2b;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-close-btn:hover {
    transform: rotate(90deg);
    color: #ffd700;
}

.mobile-nav {
    list-style: none;
    padding: 70px 0 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 16px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e67e22;
    padding-left: 30px;
}

.mobile-nav-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    transition: transform 0.3s ease;
}

.mobile-nav-link.has-dropdown.active::after {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background-color: #fafdff;
    transition: max-height 0.4s ease;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 25px 12px 40px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #e67e22;
    padding-left: 45px;
}

.mobile-dropdown-link {
    display: block;
}

.request-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0px;
    font-family: poppins, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35);
    background: #d35400;
}

/* Animation for menu items */
.mobile-nav-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay */
.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-item:nth-child(7) { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
    
    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-dropdown-item {
        padding: 10px 20px 10px 35px;
        font-size: 0.85rem;
    }
    
    .request-btn {
        margin: 20px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Scrollbar styling for mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Packages Section */
.packages-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'poppins', sans-serif;
}

.section-heading {
    text-align: center;
    text-transform: uppercase;
    font-family: "Finger Paint", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #7a4a2b;
    letter-spacing: 1.5px;
}

.section-tagline {
    text-align: center;
    font-family: 'poppins', sans-serif;
    font-size: 2.0rem;
    margin-bottom: 40px;
    color: #e67e22;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-card {
    position: relative;
    height: 200px;
    width: 280px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.package-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.price-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e67e22;
    color: #fafdff;
    padding: 5px 12px;
    border-radius: 0px;
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.card-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e67e22;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.package-card:hover .card-button {
    transform: scale(1.1) rotate(-10deg);
    background-color: #f8f0da;
    color: #e67e22;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .section-tagline {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 768px) {
    .packages-section {
        padding: 40px 15px;
    }
    
    .section-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .section-tagline {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .package-card {
        width: 100%;
        max-width: 320px;
    }
}

@media screen and (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-tagline {
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .packages-section {
        padding: 30px 10px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-tagline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .packages-grid {
        gap: 20px;
    }
    
    .package-card {
        height: 180px;
    }
    
    .card-overlay {
        padding: 15px;
    }
    
    .price-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .card-button {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-bar {
        padding: 12px 30px;
    }
    
    .mega-dropdown {
        width: 800px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .reviews {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .review-badge {
        display: none;
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .switchers {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-left: 50px;
    }

    .top-nav-links{
        display: none;
        gap: 15px;
    }
    
    .main-header {
        top: 0;
    }
    
    body {
        padding-top: 0;
    }
    
    .header-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-center {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo img {
        height: 120px;
        margin-top: -25px;
        margin-bottom: -25px;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .hero-section {
        justify-content: center;
        padding: 0 15px;
    }
    
    .form-container {
        width: 100%;
        max-width: 380px;
        padding: 25px;
        margin-right: 0;
        margin-top: 70px;
    }
    
    .form-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 12px;
        height: 70px;
    }
    
    .logo img {
        height: 100px;
        margin-top: -15px;
        margin-bottom: -15px;
    }
    
    .mobile-toggle {
        font-size: 22px;
        padding: 6px;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .mobile-request-btn {
        padding: 14px;
        margin: 15px;
        width: calc(100% - 30px);
        font-size: 14px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-tagline {
        font-size: 1.1rem;
    }
    
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: 70px;
    }
    
    .form-container {
        margin: 0 auto;
        max-width: 90%;
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .start-button {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 18px;
        max-width: 95%;
    }
    
    .form-title {
        font-size: 18px;
    }
    
    .form-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .counter-btn {
        width: 35px;
        font-size: 16px;
    }
    
    .counter-value {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-tagline {
        font-size: 1rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active .mobile-nav-item {
    animation: slideDown 0.4s ease forwards;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }

/* Animation for dropdown items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-item {
    animation: slideIn 0.2s ease forwards;
}

.dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.dropdown-item:nth-child(2) { animation-delay: 0.1s; }
.dropdown-item:nth-child(3) { animation-delay: 0.15s; }
.dropdown-item:nth-child(4) { animation-delay: 0.2s; }

/* Sticky header effect */
.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .logo img {
    height: 60px;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* Focus states for accessibility */
.switcher-btn:focus,
.review-badge:focus,
.top-nav-link:focus {
    outline: 2px solid rgba(243, 231, 212, 0.5);
    outline-offset: 2px;
}

/* Hover effects for better UX */
.switcher-btn:active,
.review-badge:active {
    transform: translateY(0) !important;
}

/* Safari Section Styles */
.safari-section {
    background-color: #fafdff;
    padding: 80px 20px;
    color: #7a4a2b;
}

.safari-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

/* Text Content Styles */
.safari-text-content {
    flex: 1;
    padding-right: 60px;
}

.safari-subheading {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ff8c06;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
}

.safari-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: "Finger Paint", cursive;
}

.safari-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
    color: #2c3e50;
}

/* Divider with Vertical Text */
.safari-divider {
    position: relative;
    width: 1px;
    height: 100px;
    background-color: #fafdff;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #7a4a2b;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    margin-top: 50px;
}

/* Image Container Styles */
.safari-image-container {
    flex: 1;
}

.safari-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .safari-main-heading {
        font-size: 36px;
    }
    
    .safari-divider {
        height: 300px;
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .safari-container {
        flex-direction: column;
    }
    
    .safari-text-content {
        padding-right: 0;
        padding-bottom: 40px;
        text-align: center;
    }
    
    .safari-divider {
        width: 80%;
        height: 1px;
        margin: 40px auto;
        flex-direction: column;
    }
    
    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 15px 0;
    }
    
    .safari-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .safari-main-heading {
        font-size: 28px;
    }
    
    .safari-section {
        padding: 60px 15px;
    }
    
    .safari-subheading {
        font-size: 12px;
    }
}

.testimonials-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    color: #7a4a2b;
    font-family: 'poppins', sans-serif;
}

.testimonials-header {
    font-family: "Finger Paint", cursive;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-weight: bold;
    text-transform: uppercase;
    color: #7a4a2b;
    font-size: 3.2rem;
    margin: 0;
    letter-spacing: 1px;
}

.testimonials-header .subtitle {
    color: #ff9800;
    font-family: 'dancing script', cursive;
    font-size: 2.3rem;
    margin: 10px 0 0;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-btn {
    background: #7a4a2b;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel {
    overflow: hidden;
    width: 100%;
    margin: 0 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    background: #7a4a2b;
    border-radius: 0px;
    padding: 25px;
    margin: 0 15px;
    box-shadow: none;
    flex: 0 0 calc(25% - 30px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    color: #7a4a2b;
}

.name-date {
    flex: 1;
}

.reviewer-name {
    margin: 0;
    font-size: 18px;
    color: white;
}

.review-date {
    margin: 5px 0 0;
    color: #d0d0d0;
    font-size: 14px;
}

.stars {
    margin-bottom: 15px;
}

.star {
    color: #ff9800;
    font-size: 18px;
}

.review-text {
    flex: 1;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.tripadvisor {
    color: #d0d0d0;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #7a4a2b;
}

.dot:hover {
    background: rgba(255, 152, 0, 0.7);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .testimonials-header h2 {
        font-size: 24px;
    }
    
    .testimonials-header .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .review-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel {
        margin: 0;
    }
}

.safari-expectations {
    background-color: #fafdff;
    padding: 60px 20px;
    font-family: 'poppins', sans-serif;
}

.section-title {
    font-family: "Finger Paint", cursive;
    text-align: center;
    font-weight: bold;
    color: #7a4a2b;
    margin-bottom: 40px;
    font-size: 2rem;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.expectation-card {
    background-color: white;
    border-radius: 0px;
    box-shadow: none;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-card {
    background-color: #f8f0da;
    font-family: 'poppins', sans-serif;
    display: flex;
    align-items: center;
}

.card-content {
    padding: 25px;
}

.card-icon {
    color: #f4a300;
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-card h3 {
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.text-card p {
    color: #333;
    line-height: 1.6;
}

/* Tablet view (2 columns) */
@media (max-width: 992px) {
    .expectations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view (1 column) */
@media (max-width: 768px) {
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

.destinations-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #fafdff;
}

.destinations-title {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  padding-bottom: 15px;
}

.destinations-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #ffd700;
}

.destinations-subtitle {
  font-size: 2.5rem;
  font-weight: 200;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #333;
}

.destinations-subtitle strong{
    font-size: 2.5rem;
    font-weight: 700;
    font-style: normal;
    color: #7a4a2b;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  display: block;
  height: 400px;
  text-decoration: none;
  color: white;
  overflow: hidden;
  border-radius: 0px;
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.destination-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.destination-name::after{
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 2px;
  background-color: #ffd700;
}

.destination-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-button {
  transform: translateX(5px);
}

/* Responsive design */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .destinations-subtitle {
    font-size: 2rem;
  }
}

/* Partners Section Styles */
.partners-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fafdff;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain;
    padding: 15px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }
    
    .partners-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partner-logo {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1.75rem;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        height: 50px;
        padding: 8px;
    }
}

.newsletter-section {
    font-family: 'poppins', sans-serif;
    padding: 60px 20px;
    background-color: #fafdff;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background: url('images/DSC08115.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

/* Optional: Add a pseudo-element for the overlay (alternative method) */
.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Ensure content stays above the overlay */
.newsletter-content > * {
    position: relative;
    z-index: 2;
}

.newsletter-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #e67e22;
}

.newsletter-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Finger Paint", cursive;
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e6f2df;
}

.newsletter-form-container {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    align-items: center;
}

.newsletter-form {
    width: 100%;
    display: flex;
    gap: 10px;
}

#newsletter-email {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#newsletter-email:focus {
    border-color: #4a8c31;
    box-shadow: 0 0 0 3px rgba(74, 140, 49, 0.2);
}

.newsletter-btn {
    padding: 15px 30px;
    background-color: #e99d2c;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #d18a20;
    transform: translateY(-2px);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    display: none;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.toast.active {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background-color: #4a8c31;
}

.toast-error {
    background-color: #e74c3c;
}

.toast-message {
    flex: 1;
    margin-right: 15px;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-container {
        flex-direction: column;
    }
    
    .newsletter-content, .newsletter-form-container {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .toast {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}

.instagram-gallery {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    background-image: 
        radial-gradient(circle, #e0e0e0 1px, transparent 1px),
        radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 8px;
}

.hashtag {
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Finger Paint", cursive;
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.header-icon {
    position: absolute;
    right: 1.5rem;
    font-size: 1.8rem;
    color: #E1306C;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hashtag {
        font-size: 1.3rem;
    }
    
    .header-icon {
        font-size: 1.5rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hashtag {
        font-size: 1.1rem;
    }
    
    .header-icon {
        font-size: 1.3rem;
        right: 1rem;
    }
    
    .instagram-gallery {
        padding: 1rem 0.5rem;
    }
}

/* Small mobile responsiveness */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hashtag {
        font-size: 1rem;
    }
    
    .header-icon {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.footer-container {
  background-color: #fafdff;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
  box-shadow: none;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-brand {
  flex: 1.5;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-img {
  max-width: 160px;
  height: auto;
}

.footer-tagline {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 280px;
}

.footer-copyright {
  color: #888;
  font-size: 14px;
}

.designer-link {
  color: #e67e22;
  text-decoration: none;
  transition: color 0.3s ease;
}

.designer-link:hover {
  color: #e67e22;
  text-decoration: underline;
}

.footer-heading {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #e67e22;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #e67e22;
  padding-left: 8px;
}

.footer-link:hover::before {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f5f7fa;
  border-radius: 50%;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #e67e22;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 0 45%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 100%;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}