/* ========================================
   Enhanced Landing Page Styles
   ======================================== */

/* Section Enhancements */
.section-enhanced {
    padding: 5rem 0;
    position: relative;
}

.section-enhanced:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-enhanced:nth-child(odd) {
    background: #ffffff;
}

/* Section Headers */
.section-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-title-wrapper {
    flex: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 61, 165, 0.2);
}

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 50%, #FF5733 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
}

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
    white-space: nowrap;
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
    background: linear-gradient(135deg, #002d7a 0%, #003DA5 100%);
}

/* Destination Cards Enhanced */
.destinations-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card-enhanced {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.destination-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 61, 165, 0.15);
}

.destination-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-card-enhanced:hover .destination-image-wrapper img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 61, 165, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card-enhanced:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 1.25rem;
    position: relative;
    z-index: 2;
}

.destination-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.destination-name-enhanced {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #003DA5;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination-link:hover {
    gap: 0.75rem;
    color: #0052d4;
}

/* Package Items Enhanced */
.packages-container-enhanced {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 165, 0.1);
}

.packages-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.package-item-enhanced {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.package-item-enhanced:hover {
    border-color: #003DA5;
    box-shadow: 0 12px 40px rgba(0, 61, 165, 0.12);
    transform: translateX(4px);
}

.package-item-enhanced:hover::before {
    transform: scaleY(1);
}

.package-header-enhanced {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.package-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-status-badge.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.package-status-badge.status-planning {
    background: #fef3c7;
    color: #92400e;
}

.package-status-badge.status-ongoing {
    background: #dbeafe;
    color: #1e40af;
}

.package-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}

.package-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.package-location-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-location-enhanced i {
    color: #FF5733;
}

.package-meta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.meta-item i {
    color: #003DA5;
    width: 18px;
}

.package-progress-enhanced {
    margin-top: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.progress-percentage {
    font-weight: 600;
    color: #003DA5;
}

.progress-bar-wrapper {
    height: 10px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-enhanced {
    height: 100%;
    background: linear-gradient(90deg, #003DA5 0%, #0052d4 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
    position: relative;
}

.progress-bar-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.package-sidebar-enhanced {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 2px solid #e5e7eb;
}

.package-price-enhanced {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #003DA5;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.btn-package-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.btn-package-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
    gap: 0.75rem;
}

.empty-packages {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-packages h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Hotel Cards Enhanced */
.hotels-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hotel-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotel-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 61, 165, 0.15);
}

.hotel-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.hotel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotel-card-enhanced:hover .hotel-image-wrapper img {
    transform: scale(1.15);
}

.hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-card-enhanced:hover .hotel-overlay {
    opacity: 1;
}

.hotel-rating-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #f59e0b;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hotel-info-enhanced {
    padding: 1.25rem;
}

.hotel-name-enhanced {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.hotel-location-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hotel-location-enhanced i {
    color: #FF5733;
}

.hotel-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-price-enhanced {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #003DA5;
    line-height: 1;
}

.price-unit {
    font-size: 0.75rem;
    color: #6b7280;
}

.btn-hotel-view {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.btn-hotel-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
    gap: 0.75rem;
}

/* Product Cards Enhanced */
.products-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 61, 165, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-enhanced:hover .product-image-wrapper img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 61, 165, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-enhanced:hover .product-overlay {
    opacity: 1;
}

.product-quick-view {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: #003DA5;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-enhanced:hover .product-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-info-enhanced {
    padding: 1.5rem;
}

.product-name-enhanced {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-enhanced {
    display: flex;
    flex-direction: column;
}

.price-currency {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.btn-product-cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.btn-product-cart:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.4);
}

/* Promo Grid Enhanced */
.promo-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Stats Section Enhanced */
.stats-home {
    background: #E3F2FD;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.stats-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item-home {
    text-align: center;
    padding: 2.5rem 2rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.stat-item-home:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003DA5 0%, #0052d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 61, 165, 0.3);
    transition: all 0.3s ease;
}

.stat-item-home:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-item-home h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1565C0;
    margin-bottom: 0.75rem;
}

.stat-item-home p {
    color: #424242;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .destinations-grid-enhanced,
    .hotels-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 968px) {
    .section-header-enhanced {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title-wrapper {
        flex: 1;
        min-width: 0;
    }
    
    .section-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title-enhanced {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        display: none; /* Hide description on mobile to save space */
    }
    
    .btn-primary-enhanced {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .btn-primary-enhanced i {
        font-size: 0.8rem;
    }
    
    .package-content-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-sidebar-enhanced {
        border-left: none;
        border-top: 2px solid #e5e7eb;
        padding-left: 0;
        padding-top: 1.5rem;
        align-items: flex-start;
    }
    
    /* Horizontal scrollable sections on mobile */
    .destinations-grid-enhanced,
    .hotels-grid-enhanced {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: #003DA5 #f0f0f0;
        padding-bottom: 0.5rem;
    }
    
    .destinations-grid-enhanced::-webkit-scrollbar,
    .hotels-grid-enhanced::-webkit-scrollbar {
        height: 6px;
    }
    
    .destinations-grid-enhanced::-webkit-scrollbar-track,
    .hotels-grid-enhanced::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }
    
    .destinations-grid-enhanced::-webkit-scrollbar-thumb,
    .hotels-grid-enhanced::-webkit-scrollbar-thumb {
        background: #003DA5;
        border-radius: 10px;
    }
    
    .destinations-grid-enhanced::-webkit-scrollbar-thumb:hover,
    .hotels-grid-enhanced::-webkit-scrollbar-thumb:hover {
        background: #002d7a;
    }
    
    .destination-card-enhanced,
    .hotel-card-enhanced {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: start;
    }
    
    .products-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .promo-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    /* Stats - Centered Grid Layout for Mobile */
    .stats-grid-home {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        max-width: 100%;
        margin: 0 auto;
        justify-items: center;
        align-items: center;
        overflow: hidden;
    }
    
    .stat-item-home {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0.25rem;
        text-align: center;
        margin: 0;
        transform: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item-home h3 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .stat-item-home p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .stats-home {
        padding: 2rem 0;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .section-enhanced {
        padding: 3rem 0;
    }
    
    .section-header-enhanced {
        gap: 0.75rem;
    }
    
    .section-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .section-title-enhanced {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .btn-primary-enhanced {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-primary-enhanced i {
        font-size: 0.75rem;
    }
    
    .packages-container-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .package-item-enhanced {
        padding: 1.5rem;
    }
    
    /* Stats - Even more compact on smaller mobile */
    .stats-grid-home {
        gap: 0.25rem;
        padding: 0.75rem 0.25rem;
    }
    
    .stat-item-home {
        padding: 0.75rem 0.15rem;
        margin: 0;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .stat-item-home h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-item-home p {
        font-size: 0.55rem;
        line-height: 1.1;
    }
}

/* Extra Small Mobile - 320px and below */
@media (max-width: 480px) {
    /* Adjust card width for very small screens */
    .destination-card-enhanced,
    .hotel-card-enhanced {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
    
    .destinations-grid-enhanced,
    .hotels-grid-enhanced {
        gap: 0.75rem;
    }
    
    /* Scale down header elements for very small screens */
    .section-header-enhanced {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.3rem;
    }
    
    .section-badge i {
        font-size: 0.6rem;
    }
    
    .section-title-enhanced {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .btn-primary-enhanced {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
    }
    
    .btn-primary-enhanced i {
        font-size: 0.7rem;
    }
    
    .btn-primary-enhanced {
        white-space: nowrap;
    }
    
    /* Optionally shorten button text on very small screens */
    .btn-primary-enhanced .btn-text {
        display: inline;
    }
    
    /* On very small screens, show icon only if text doesn't fit */
    @media (max-width: 360px) {
        .btn-primary-enhanced {
            padding: 0.5rem 0.7rem;
            font-size: 0.7rem;
        }
        
        .btn-primary-enhanced i {
            font-size: 0.8rem;
        }
    }
    .stats-grid-home {
        gap: 0.2rem;
        padding: 0.75rem 0.15rem;
    }
    
    .stat-item-home {
        padding: 0.65rem 0.1rem;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-item-home h3 {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-item-home p {
        font-size: 0.5rem;
        line-height: 1;
    }
    
    .stats-home {
        padding: 1.5rem 0;
    }
}

