/* =========================================
   GUIDE TOUR INDONESIA - HOME PAGE STYLES
   ========================================= */

/* =================== RESET & GLOBAL =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #111827;
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 0 !important;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 56px) 1.25rem;
}

/* =================== HERO SECTION =================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, #dc3545 0%, #1976d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-section::before {
    display: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 20px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.1;
    text-shadow: none;
}

.hero-content > p {
    font-size: 1.25rem;
    margin: 15px 0 35px 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35)
    );
    z-index: 1;
}



/* =================== SEARCH BAR =================== */
.search-bar-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid #e5e7eb;
    gap: 10px;
    min-height: 42px;
    min-width: 180px;
}

.search-input-group:last-of-type {
    border-right: none;
    padding-right: 12px;
}

.search-input-group i {
    color: #9ca3af;
    font-size: 16px;
    flex-shrink: 0;
}

.search-input-group input,
.search-input-group select {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 13px;
    color: #374151;
    font-family: inherit;
    padding: 0;
}

.search-input-group input::placeholder {
    color: #9ca3af;
}

.search-input-group select {
    cursor: pointer;
    appearance: none;
    color: #9ca3af;
}

.search-input-group select option {
    color: #111827;
}

.search-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-left: 8px;
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-btn:hover {
    background: #b71c1c;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
}

.search-btn:active {
    transform: translateY(0);
}

/* =================== BOOKING SECTION =================== */
.booking-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    padding: 60px 2rem;
    margin: 80px 0;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.booking-header p {
    color: #6b7280;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Booking Tabs */
.booking-tabs-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-tab {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #6b7280;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-tab:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.booking-tab.active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.booking-tab i {
    font-size: 18px;
}

/* Booking Content */
.booking-content-wrapper {
    display: none;
}

.booking-content-wrapper.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================== FORM STYLES =================== */
.accommodation-booking,
.guide-booking {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.booking-form,
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.textarea-group {
    grid-column: 1 / -1;
}

.textarea-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.textarea-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s;
}

.textarea-group textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* =================== BUTTONS =================== */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-search {
    background: #dc3545;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.btn-search:hover {
    background: #b71c1c;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    transition: all 0.3s;
    width: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1aa84f 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* =================== GUIDE TOUR =================== */
.guide-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.guide-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.guide-card:hover {
    border-color: #dc3545;
    background: #f8fafc;
    transform: translateY(-5px);
}

.guide-card i {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 16px;
}

.guide-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.guide-card p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.guide-form {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    border: 2px dashed #e5e7eb;
}

.guide-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

/* =================== SECTION HEADERS =================== */
.section-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.section-header > div {
    flex: 1;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #111827;
}

.section-subtitle {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.view-all-btn {
    background: #f0f4f8;
    color: #dc3545;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 5px;
}

.view-all-btn:hover {
    background: #e0e7ff;
    color: #b71c1c;
}

/* =================== FEATURED WISATA =================== */
.featured-wisata-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.wisata-featured-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
}

a.wisata-featured-card {
    text-decoration: none;
    color: inherit;
}

.wisata-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.wisata-featured-card .image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
    overflow: hidden;
}

.wisata-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.wisata-featured-card:hover img {
    transform: scale(1.05);
}

.wisata-featured-card .new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fbbf24;
    color: #78350f;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wisata-featured-card .card-content {
    padding: 22px;
}

.wisata-featured-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 12px 0;
    color: #111827;
}

.wisata-featured-card .location {
    color: #dc3545;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.wisata-featured-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0;
}

.wisata-featured-card .ticket-price {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin: 0;
}

/* =================== CITIES SECTION =================== */
.cities-section {
    margin-bottom: 80px;
}

.cities-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.city-card {
    position: relative;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.city-card:hover {
    transform: scale(1.02);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: white;
}

.city-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.city-card .location {
    font-size: 13px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.city-card .explore-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* =================== BLOG SECTION =================== */
.blog-section {
    margin-bottom: 60px;
}

.blog-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-featured {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
    cursor: pointer;
}

.blog-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
}

.blog-featured-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
}

.blog-featured h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.blog-featured p {
    font-size: 14px;
    color: #d1d5db;
    margin: 0;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.blog-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s;
    align-items: start;
}

.blog-item:hover {
    transform: translateX(5px);
}

.blog-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-item-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111827;
}

.blog-item-badge {
    display: inline-block;
    color: #dc3545;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-item-date {
    color: #9ca3af;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1024px) {
    .container {
        padding: 50px 1.5rem;
    }

    .search-bar-wrapper {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }

    .search-input-group {
        flex: 1;
        min-width: 200px;
        border-right: none !important;
        padding: 0 12px !important;
        border-bottom: 1px solid #e5e7eb;
    }

    .search-input-group:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        flex: 1;
        min-width: 200px;
        margin-left: 0;
        margin-top: 0;
        padding: 8px 20px;
        font-size: 13px;
    }

    .search-favorite-provinsi {
        gap: 10px;
        margin-bottom: 20px;
    }

    .search-favorite-provinsi h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .favorite-provinsi-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 110px;
    }

    .provinsi-name {
        font-size: 12px;
        font-weight: 700;
    }

    .provinsi-star {
        font-size: 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-content {
        grid-template-columns: 1fr;
    }

    .featured-wisata-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 1.5rem;
    }

    .hero-section {
        min-height: 500px;
        height: 75vh;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .search-favorite-provinsi {
        gap: 8px;
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .search-favorite-provinsi h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .favorite-provinsi-btn {
        padding: 9px 14px;
        font-size: 11px;
        gap: 5px;
        min-width: 100px;
    }

    .provinsi-name {
        font-size: 11px;
        font-weight: 700;
    }

    .provinsi-star {
        font-size: 13px;
    }

    .search-bar-wrapper {
        margin-top: 30px;
        flex-direction: column;
        padding: 12px 14px;
    }

    .search-input-group {
        width: 100%;
        min-width: auto;
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb !important;
        padding: 0 12px !important;
    }

    .search-input-group:last-of-type {
        border-bottom: none !important;
    }

    .search-input-group.full {
        border-bottom: 1px solid #e5e7eb !important;
    }

    .search-btn {
        width: 100%;
        min-width: auto;
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .booking-section {
        padding: 40px 1rem;
        margin: 60px 0;
    }

    .booking-header h2 {
        font-size: 1.8rem;
    }

    .accommodation-booking,
    .guide-booking {
        padding: 24px;
    }

    .booking-form,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-search,
    .btn-whatsapp {
        width: 100%;
    }

    .guide-info {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cities-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .blog-item {
        grid-template-columns: 120px 1fr;
        gap: 16px;
    }

    .blog-item img {
        width: 120px;
        height: 100px;
    }

    .featured-wisata-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 1rem;
    }

    .hero-section {
        height: 70vh;
        min-height: 450px;
        margin-top: 65px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .search-favorite-provinsi {
        gap: 6px;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .search-favorite-provinsi h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .favorite-provinsi-btn {
        padding: 8px 12px;
        font-size: 10px;
        gap: 4px;
        border-radius: 20px;
        min-width: 90px;
    }

    .provinsi-name {
        font-size: 10px;
        font-weight: 700;
    }

    .provinsi-star {
        font-size: 12px;
    }

    .search-bar-wrapper {
        border-radius: 12px;
        padding: 12px 14px;
        margin-top: 20px;
    }

    .search-input-group {
        padding: 0 10px !important;
        min-height: 44px;
    }

    .search-input-group i {
        font-size: 16px;
    }

    .search-input-group input,
    .search-input-group select {
        font-size: 12px;
    }

    .search-btn {
        padding: 10px 16px;
        font-size: 13px;
        margin-top: 10px;
    }

    .booking-tabs-wrapper {
        gap: 8px;
    }

    .booking-tab {
        padding: 12px 20px;
        font-size: 13px;
    }

    .booking-header h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .city-card {
        height: 250px;
    }

    .blog-featured {
        height: 300px;
    }

    .blog-featured h3 {
        font-size: 1.5rem;
    }

    .wisata-featured-card .card-content {
        padding: 16px;
    }

    .wisata-featured-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .booking-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* =================== FAVORITE PROVINSI =================== */
.search-favorite-provinsi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0 20px;
    align-items: center;
}

.search-favorite-provinsi h3 {
    width: 100%;
    text-align: center;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.favorite-provinsi-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #111827;
    cursor: pointer;
    text-align: center;
    padding: 12px 20px;
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    min-width: 120px;
}

.favorite-provinsi-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.3s ease;
    z-index: 0;
}

.favorite-provinsi-btn:hover::before {
    left: 100%;
}

.favorite-provinsi-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}

.favorite-provinsi-btn:active {
    transform: translateY(-1px);
}

.provinsi-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.provinsi-star {
    display: block;
    font-size: 18px;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* =================== SEARCH INPUT GROUP FULL =================== */
.search-input-group.full {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: none !important;
    min-width: 100%;
    padding: 0 16px !important;
    justify-content: center;
}
