/**
 * Home Page Specific Styles - FULLY RESPONSIVE
 */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        padding: 6rem 0 3rem;
    }
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .hero-slide::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 700px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fade-in-up 0.8s ease-out;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.hero-title .highlight {
    background: linear-gradient(to right, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ============================================
   INLINE HERO (Used in current PHP)
   ============================================ */
@media (max-width: 768px) {
    section.relative.h-\[85vh\] {
        height: auto !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding: 5rem 0 3rem;
        display: flex !important;
        align-items: center !important;
    }

    section.relative.h-\[85vh\] .container {
        display: flex;
        align-items: center;
    }

    section.relative.h-\[85vh\] h1 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1rem !important;
    }

    section.relative.h-\[85vh\] p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    section.relative.h-\[85vh\] .flex-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    section.relative.h-\[85vh\] .flex-wrap a {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    section.relative.h-\[85vh\] h1 {
        font-size: 1.75rem !important;
    }
}

/* ============================================
   SEARCH BOX IN HERO
   ============================================ */
.hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    margin-top: 2rem;
    animation: fade-in-up 0.8s ease-out 0.6s backwards;
}

@media (max-width: 768px) {
    .hero-search {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}

.hero-search .form-group {
    flex: 1;
    min-width: 150px;
}

.hero-search label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-search input,
.hero-search select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

@media (max-width: 480px) {
    .hero-search input,
    .hero-search select {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
}

.hero-search input:focus,
.hero-search select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* ============================================
   STATS SECTION (Inline PHP)
   ============================================ */
@media (max-width: 768px) {
    .py-12.bg-white.-mt-20 {
        margin-top: -2rem !important;
        padding: 1.5rem 0 !important;
    }

    .py-12.bg-white.-mt-20 .bg-white.rounded-2xl {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }

    .py-12.bg-white.-mt-20 .grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .py-12.bg-white.-mt-20 .text-center.p-4 {
        padding: 0.5rem !important;
    }

    .py-12.bg-white.-mt-20 .font-poppins.font-bold.text-4xl {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-12.bg-white.-mt-20 .text-gray-600.text-sm {
        font-size: 0.7rem !important;
    }

    .py-12.bg-white.-mt-20 .border-r {
        border-right: none !important;
    }
}

@media (max-width: 380px) {
    .py-12.bg.white.-mt-20 .grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .py-12.bg-white.-mt-20 .font-poppins.font-bold.text-4xl {
        font-size: 1.25rem !important;
    }
}

/* Stats Section (CSS class based) */
.stats-section {
    background: linear-gradient(to right, #1d4ed8, #2563eb);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #fbbf24;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }
}

/* ============================================
   SEARCH SECTION (Inline PHP)
   ============================================ */
@media (max-width: 1024px) {
    .py-12.bg-gray-50 .grid.grid-cols-1.md\:grid-cols-5 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .py-12.bg-gray-50 .grid.grid-cols-1.md\:grid-cols-5 > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .py-12.bg-gray-50 {
        padding: 1.5rem 0 !important;
    }

    .py-12.bg-gray-50 .bg-white.rounded-2xl {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }

    .py-12.bg-gray-50 .grid.grid-cols-1.md\:grid-cols-5 {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .py-12.bg-gray-50 label {
        font-size: 0.8rem !important;
        margin-bottom: 0.375rem !important;
    }

    .py-12.bg-gray-50 input,
    .py-12.bg-gray-50 select {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }

    .py-12.bg-gray-50 button {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
}

/* Destination Search Box (CSS class) */
.destination-search-section {
    padding: 3rem 0;
    background: white;
    position: relative;
    z-index: 20;
    margin-top: -5rem;
}

@media (max-width: 1024px) {
    .destination-search-section {
        margin-top: -3rem;
    }

    .destination-search-box {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1.5rem;
    }

    .destination-search-box > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .destination-search-section {
        margin-top: -2rem;
        padding: 1.5rem 0;
    }

    .destination-search-box {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .destination-search-box .search-btn {
        width: 100%;
        justify-content: center;
    }
}

.destination-search-box {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.destination-search-box .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.destination-search-box .form-group input,
.destination-search-box .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.destination-search-box .form-group input:focus,
.destination-search-box .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.destination-search-box .search-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    border-radius: 0.75rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.destination-search-box .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* ============================================
   CATEGORIES SECTION (Inline PHP)
   ============================================ */
@media (max-width: 1024px) {
    .py-20.bg-white .grid.grid-cols-2.md\:grid-cols-3.lg\:grid-cols-6 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 640px) {
    .py-20.bg-white {
        padding: 2.5rem 0 !important;
    }

    .py-20.bg-white .grid.grid-cols-2.md\:grid-cols-3.lg\:grid-cols-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .py-20.bg-white .bg-white.rounded-2xl.p-6 {
        padding: 1rem !important;
        border-radius: 0.75rem !important;
    }

    .py-20.bg-white .w-16.h-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        border-radius: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-20.bg-white .w-16.h-16 i {
        font-size: 1rem !important;
    }

    .py-20.bg-white .bg-white.rounded-2xl.p-6 h3 {
        font-size: 0.8rem !important;
    }

    .py-20.bg-white .bg-white.rounded-2xl.p-6 p {
        font-size: 0.7rem !important;
    }
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.package-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

@media (max-width: 768px) {
    .package-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .package-card {
        border-radius: 1rem;
    }
}

.package-card .image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

@media (max-width: 480px) {
    .package-card .image-wrapper {
        aspect-ratio: 16/9;
    }
}

.package-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.package-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .package-card .badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}

.badge-featured {
    background: rgba(249, 115, 22, 0.9);
    color: white;
}

.badge-popular {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.badge-trending {
    background: rgba(37, 99, 235, 0.9);
    color: white;
}

.badge-discount {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    top: auto;
    bottom: 1rem;
    left: 1rem;
}

@media (max-width: 480px) {
    .badge-discount {
        bottom: 0.5rem;
        left: 0.5rem;
    }
}

.package-card .wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

@media (max-width: 480px) {
    .package-card .wishlist-btn {
        top: 0.5rem;
        right: 0.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

.package-card .wishlist-btn:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.package-card .wishlist-btn.active {
    background: #ef4444;
    color: white;
}

.package-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .package-card .card-body {
        padding: 1rem;
    }
}

.package-card .category-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
    .package-card .category-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.5rem;
    }
}

.package-card .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

@media (max-width: 480px) {
    .package-card .title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
}

.package-card:hover .title {
    color: #2563eb;
}

.package-card .location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .package-card .location {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.package-card .meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .package-card .meta {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        padding-top: 0.75rem;
    }
}

.package-card .meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .package-card .meta-item {
        font-size: 0.75rem;
    }
}

.package-card .meta-item i {
    color: #f97316;
}

.package-card .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

@media (max-width: 480px) {
    .package-card .footer {
        padding-top: 0.75rem;
        align-items: flex-end;
        gap: 0.75rem;
    }
}

.package-card .price {
    display: flex;
    flex-direction: column;
}

.package-card .price .original {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
}

@media (max-width: 480px) {
    .package-card .price .original {
        font-size: 0.65rem;
    }
}

.package-card .price .current {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2563eb;
    line-height: 1;
}

@media (max-width: 480px) {
    .package-card .price .current {
        font-size: 1.125rem;
    }
}

.package-card .price .label {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (max-width: 480px) {
    .package-card .price .label {
        font-size: 0.65rem;
    }
}

.package-card .btn-book {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

@media (max-width: 480px) {
    .package-card .btn-book {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
}

.package-card .btn-book:hover {
    background: linear-gradient(to right, #1d4ed8, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ============================================
   FEATURED PACKAGES (Inline PHP)
   ============================================ */
@media (max-width: 1024px) {
    .py-20.bg-gray-50 .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 640px) {
    .py-20.bg-gray-50 {
        padding: 2.5rem 0 !important;
    }

    .py-20.bg-gray-50 .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden {
        border-radius: 1rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden .p-5 {
        padding: 0.875rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden h3 {
        font-size: 1rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden .text-gray-500.text-sm {
        font-size: 0.75rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden .font-poppins.font-bold.text-xl {
        font-size: 1.125rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden .text-xs.text-gray-500 {
        font-size: 0.65rem !important;
    }

    .py-20.bg-gray-50 .bg-white.rounded-2xl.overflow-hidden a.bg-blue-600 {
        padding: 0.5rem 0.875rem !important;
        font-size: 0.75rem !important;
    }

    .py-20.bg-gray-50 .text-center.mt-12 {
        margin-top: 2rem !important;
    }

    .py-20.bg-gray-50 .text-center.mt-12 a {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 640px) {
    .why-choose-section {
        padding: 2rem 0;
    }
}

/* Why Choose Us (Inline PHP) */
@media (max-width: 768px) {
    .py-20.bg-white {
        padding: 2.5rem 0 !important;
    }

    .py-20.bg-white .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .py-20.bg-white .bg-white.rounded-2xl.p-6 {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }

    .py-20.bg-white .w-16.h-16 {
        width: 3rem !important;
        height: 3rem !important;
        border-radius: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .py-20.bg-white .w-16.h-16 i {
        font-size: 1.125rem !important;
    }

    .py-20.bg-white .font-poppins.font-bold.text-lg {
        font-size: 0.95rem !important;
        margin-bottom: 0.375rem !important;
    }

    .py-20.bg-white .text-gray-600.text-sm {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .py-20.bg-white .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .py-20.bg-white .bg-white.rounded-2xl.p-6 {
        padding: 1rem !important;
    }

    .py-20.bg-white .w-16.h-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .py-20.bg-white .w-16.h-16 i {
        font-size: 1rem !important;
    }

    .py-20.bg-white .font-poppins.font-bold.text-lg {
        font-size: 0.85rem !important;
    }

    .py-20.bg-white .text-gray-600.text-sm {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    height: 100%;
}

@media (max-width: 640px) {
    .feature-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

@media (max-width: 768px) {
    .feature-card:hover {
        transform: translateY(-5px);
    }
}

.feature-card .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .feature-card .icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 0.75rem;
        border-radius: 0.75rem;
    }

    .feature-card .icon i {
        font-size: 1.25rem;
    }
}

.feature-card:hover .icon {
    background: linear-gradient(135deg, #2563eb, #f97316);
}

.feature-card:hover .icon i {
    color: white;
}

.feature-card .icon i {
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.feature-card .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

@media (max-width: 640px) {
    .feature-card .title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

.feature-card .description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (max-width: 640px) {
    .feature-card .description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1d4ed8, #2563eb);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 2rem 0;
    }
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Testimonials (Inline PHP) */
@media (max-width: 768px) {
    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 {
        padding: 2.5rem 0 !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .grid.grid-cols-1.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .bg-white\/10.rounded-2xl.p-6 {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .bg-white\/10.rounded-2xl.p-6 p {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .w-12.h-12 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 0.875rem !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .font-semibold {
        font-size: 0.9rem !important;
    }

    .py-20.bg-gradient-to-br.from-blue-600.to-blue-800 .text-sm.text-white\/70 {
        font-size: 0.75rem !important;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    height: 100%;
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .testimonial-card .quote-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.testimonial-card .quote-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

@media (max-width: 640px) {
    .testimonial-card .quote-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .testimonial-card .author {
        gap: 0.75rem;
    }
}

.testimonial-card .avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .testimonial-card .avatar {
        width: 2.75rem;
        height: 2.75rem;
    }
}

.testimonial-card .author-info .name {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
    .testimonial-card .author-info .name {
        font-size: 0.9rem;
    }
}

.testimonial-card .author-info .location {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .testimonial-card .author-info .location {
        font-size: 0.75rem;
    }
}

.testimonial-card .rating {
    margin-bottom: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 2rem 0;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite reverse;
}

/* CTA (Inline PHP) */
@media (max-width: 768px) {
    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 {
        padding: 2.5rem 0 !important;
    }

    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 h2 {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 .flex-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 .flex-wrap a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 h2 {
        font-size: 1.5rem !important;
    }

    .py-16.bg-gradient-to-r.from-orange-500.to-orange-600 p {
        font-size: 0.9rem !important;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        margin-bottom: 1.5rem;
    }
}

.section-heading .subtitle {
    display: inline-block;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
    .section-heading .subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

.section-heading .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-heading .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.section-heading .divider .line {
    width: 3rem;
    height: 3px;
    background: #f97316;
    border-radius: 3px;
}

@media (max-width: 480px) {
    .section-heading .divider .line {
        width: 2rem;
    }
}

.section-heading .divider .dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 50%;
}

/* Section Headings (Inline PHP) */
@media (max-width: 640px) {
    .text-center.mb-12 {
        margin-bottom: 1.5rem !important;
    }

    .text-center.mb-12 h2 {
        font-size: 1.5rem !important;
    }

    .text-center.mb-12 p {
        font-size: 0.875rem !important;
    }

    .text-center.mb-12 span {
        font-size: 0.7rem !important;
    }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .blog-card {
        border-radius: 1rem;
    }
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blog-card:hover {
        transform: translateY(-4px);
    }
}

.blog-card .image-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.blog-card .category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .blog-card .category-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}

.blog-card .content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .blog-card .content {
        padding: 1rem;
    }
}

.blog-card .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .blog-card .meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
}

.blog-card .meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

@media (max-width: 480px) {
    .blog-card .title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}

.blog-card:hover .title {
    color: #2563eb;
}

.blog-card .excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

@media (max-width: 480px) {
    .blog-card .excerpt {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.blog-card .read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
}

.blog-card .read-more:hover {
    gap: 0.75rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .services-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 2rem 0;
    }
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
    .service-card {
        border-radius: 1rem;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-5px);
    }
}

.service-card .image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 640px) {
    .service-card .image-wrapper {
        height: 150px;
    }
}

.service-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.service-card .content {
    padding: 1.5rem;
}

@media (max-width: 480px) {
    .service-card .content {
        padding: 1rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: white;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 2rem 0;
    }
}

.faq-item {
    background: #f9fafb;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

@media (max-width: 480px) {
    .faq-item {
        border-radius: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.faq-item.active {
    background: white;
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.faq-item .question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .faq-item .question {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.faq-item .question i {
    transition: transform 0.3s ease;
    color: #2563eb;
    flex-shrink: 0;
}

.faq-item.active .question i {
    transform: rotate(180deg);
}

.faq-item .answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .faq-item .answer {
        padding: 0 1rem;
        font-size: 0.875rem;
    }
}

.faq-item.active .answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

@media (max-width: 480px) {
    .faq-item.active .answer {
        padding: 0 1rem 1rem;
    }
}

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 20px;
    }
}

.swiper-pagination-bullet-active {
    background: #2563eb;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(37, 99, 235, 0.8);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #2563eb;
    transform: scale(1.1);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loader {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1;
}

@media (max-width: 480px) {
    .gallery-item {
        border-radius: 0.5rem;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 640px) {
    .gallery-item::after {
        font-size: 1.25rem;
    }
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   RATING STARS
   ============================================ */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.rating .star {
    color: #fbbf24;
}

@media (max-width: 480px) {
    .rating .star {
        font-size: 0.75rem;
    }
}

/* ============================================
   EMPTY STATE
   ============================================ */
@media (max-width: 640px) {
    .text-center.py-12 {
        padding: 2rem 1rem !important;
    }

    .text-center.py-12 .w-24.h-24 {
        width: 4rem !important;
        height: 4rem !important;
        margin-bottom: 1rem !important;
    }

    .text-center.py-12 .w-24.h-24 i {
        font-size: 1.5rem !important;
    }

    .text-center.py-12 h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .text-center.py-12 p {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem !important;
    }

    .text-center.py-12 a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* ============================================
   UTILITY OVERRIDES FOR MOBILE
   ============================================ */
@media (max-width: 640px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
}

/* Disable hover transforms on touch devices */
@media (hover: none) {
    .package-card:hover,
    .feature-card:hover,
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }

    .package-card:hover .image-wrapper img,
    .service-card:hover .image-wrapper img,
    .blog-card:hover .image-wrapper img,
    .gallery-item:hover img {
        transform: none;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .hero-slider,
        section.relative.h-\[85vh\] {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }
    }
}

/* Smooth scroll on mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fix for 100vh on mobile browsers */
@supports (height: 100dvh) {
    .hero-slider {
        height: 100dvh;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================================
   🆕 POPULAR DESTINATIONS SECTION
   ============================================================ */
.home-destinations {
    padding: 5rem 0;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .home-destinations {
        padding: 3rem 0;
    }
}

.dest-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .dest-header {
        margin-bottom: 1.5rem;
    }
}

.dest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff7ed;
    color: #f97316;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.dest-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dest-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .dest-subtitle {
        font-size: 0.9rem;
    }
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .dest-grid {
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .dest-grid {
        grid-auto-rows: 140px;
        gap: 0.5rem;
    }
}

.dest-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.dest-card.dest-large {
    grid-row: span 2;
}

.dest-card.dest-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .dest-card.dest-large {
        grid-row: span 1;
    }
    .dest-card.dest-wide {
        grid-column: span 1;
    }
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: white;
}

.dest-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .dest-overlay h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .dest-overlay h3 {
        font-size: 1rem;
    }
    .dest-overlay {
        padding: 0.75rem;
    }
}

.dest-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

@media (max-width: 480px) {
    .dest-overlay p {
        font-size: 0.7rem;
    }
}

.dest-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

@media (max-width: 480px) {
    .dest-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }
}

.dest-footer {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .dest-footer {
        margin-top: 1.5rem;
    }
}

.dest-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.dest-view-all:hover {
    gap: 0.75rem;
}

/* ============================================================
   🆕 HOW IT WORKS SECTION
   ============================================================ */
.home-how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #fff7ed 100%);
}

@media (max-width: 768px) {
    .home-how-it-works {
        padding: 3rem 0;
    }
}

.hiw-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 640px) {
    .hiw-header {
        margin-bottom: 2rem;
    }
}

.hiw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.hiw-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.hiw-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .hiw-subtitle {
        font-size: 0.9rem;
    }
}

.hiw-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hiw-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hiw-grid {
        flex-direction: column;
        gap: 0;
    }
}

.hiw-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.hiw-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

@media (max-width: 640px) {
    .hiw-card {
        width: 100%;
        max-width: 320px;
        padding: 1.5rem 1.25rem;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        text-align: left;
    }
}

.hiw-step {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .hiw-step {
        position: static;
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

.hiw-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0.75rem auto 1rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.hiw-icon.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #f97316;
}

.hiw-icon.green {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    color: #22c55e;
}

.hiw-icon.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    color: #a855f7;
}

.hiw-card:hover .hiw-icon {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .hiw-icon {
        margin: 0;
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
}

.hiw-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.hiw-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.hiw-connector {
    color: #cbd5e1;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hiw-connector {
        transform: rotate(90deg);
        color: #2563eb;
        margin: 0.25rem 0;
    }
}

/* ============================================================
   🆕 SPECIAL OFFER BANNER
   ============================================================ */
.home-offer-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 40%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .home-offer-banner {
        padding: 2.5rem 0;
    }
}

.offer-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.offer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.offer-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.offer-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.offer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.offer-highlight {
    color: #fbbf24;
}

.offer-text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .offer-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .offer-timer {
        justify-content: center;
    }
}

.timer-block {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 65px;
}

@media (max-width: 480px) {
    .timer-block {
        padding: 0.5rem 0.625rem;
        min-width: 52px;
    }
}

.timer-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    color: #fbbf24;
}

@media (max-width: 480px) {
    .timer-num {
        font-size: 1.125rem;
    }
}

.timer-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.timer-sep {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fbbf24;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.offer-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.offer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .offer-image img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .offer-image img {
        height: 180px;
    }
}

.offer-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: white;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-old {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #dc2626;
}

/* ============================================================
   🆕 LATEST BLOGS SECTION
   ============================================================ */
.home-blogs {
    padding: 5rem 0;
    background: white;
}

@media (max-width: 768px) {
    .home-blogs {
        padding: 3rem 0;
    }
}

.blogs-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .blogs-header {
        margin-bottom: 1.5rem;
    }
}

.blogs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f0fdf4;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.blogs-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.blogs-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .blogs-subtitle {
        font-size: 0.9rem;
    }
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .blogs-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.blog-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f3f4f6;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.625rem;
    border-radius: 50px;
}

.blog-body {
    padding: 1.25rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-body h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-body h3 {
    color: #2563eb;
}

.blog-read {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
}

.blog-card:hover .blog-read {
    gap: 0.625rem;
}

/* ============================================================
   🆕 NEWSLETTER SECTION
   ============================================================ */
.home-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .home-newsletter {
        padding: 2.5rem 0;
    }
}

.newsletter-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.nl-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.nl-shape-1 {
    width: 200px;
    height: 200px;
    background: #dbeafe;
    top: -80px;
    right: -40px;
}

.nl-shape-2 {
    width: 150px;
    height: 150px;
    background: #fed7aa;
    bottom: -60px;
    left: -30px;
}

.nl-shape-3 {
    width: 100px;
    height: 100px;
    background: #bbf7d0;
    top: 50%;
    left: 10%;
}

.newsletter-box {
    background: white;
    border-radius: 2rem;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .newsletter-box {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-box {
        padding: 2rem 1.25rem;
    }
}

.nl-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transform: rotate(-15deg);
}

@media (max-width: 480px) {
    .nl-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

.nl-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.nl-text {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nl-form {
    margin-bottom: 1.25rem;
}

.nl-input-group {
    display: flex;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.nl-input-group:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.nl-input-group input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    min-width: 0;
}

.nl-input-group input::placeholder {
    color: #9ca3af;
}

.nl-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.875rem 1.75rem;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.nl-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
}

.nl-btn-icon {
    transition: transform 0.2s ease;
}

.nl-btn:hover .nl-btn-icon {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .nl-input-group {
        flex-direction: column;
        border-radius: 0.75rem;
    }

    .nl-input-group input {
        padding: 0.75rem 1rem;
        text-align: center;
    }

    .nl-btn {
        justify-content: center;
        padding: 0.75rem;
        border-radius: 0 0 0.625rem 0.625rem;
    }

    .nl-btn-text {
        display: inline;
    }
}

.nl-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nl-trust span {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nl-trust i {
    color: #22c55e;
    font-size: 0.7rem;
}

/* ============================================================
   TOUCH DEVICE FIXES
   ============================================================ */
@media (hover: none) {
    .dest-card:hover img,
    .blog-card:hover .blog-image img {
        transform: none;
    }
    .dest-card:hover,
    .blog-card:hover,
    .hiw-card:hover,
    .offer-btn:hover {
        transform: none;
    }
}

/* ============================================================
   ANIMATIONS (reuse)
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}