/* PART 1 */


/* ========================= */
/* SEARCH SECTION */
/* ========================= */

.dco-search-section {
    position: relative;
    overflow: hidden;

    padding: 90px 8%;

    background:
        linear-gradient(135deg,
            #f0f9ff 0%,
            #ffffff 45%,
            #e0f2fe 100%);
}

/* ========================= */
/* BACKGROUND GLOW */
/* ========================= */

.dco-search-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.dco-search-glow-1 {
    width: 280px;
    height: 280px;

    background: rgba(14, 165, 233, 0.15);
    top: -80px;
    left: -50px;
}

.dco-search-glow-2 {
    width: 240px;
    height: 240px;

    background: rgba(59, 130, 246, 0.12);
    bottom: -80px;
    right: -50px;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.dco-search-container {
    max-width: 1400px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;

    position: relative;
    z-index: 2;
}

/* ========================= */
/* LEFT */
/* ========================= */

.dco-search-left {
    width: 42%;
}

/* badge */

.dco-search-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 40px;

    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 16px;
}

.dco-badge-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #0ea5e9;
}

/* title */

.dco-search-left h2 {
    font-size: 50px;
    line-height: 1.1;

    color: #111827;

    margin-bottom: 18px;

    letter-spacing: -1.5px;
}

.dco-search-left h2 span {
    background:
        linear-gradient(135deg,
            #0284c7,
            #2563eb);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* text */

.dco-search-left p {
    font-size: 17px;
    line-height: 1.6;

    color: #6b7280;

    max-width: 580px;
}






/* PART 2 */


/* ========================= */
/* SEARCH CARD */
/* ========================= */

.dco-search-card {
    width: 58%;

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 26px;

    padding: 26px;
    border: 1px solid rgba(14, 165, 233, 0.12);

    box-shadow:
        0 25px 55px rgba(14, 165, 233, 0.10);
}

/* ========================= */
/* SEARCH FIELD */
/* ========================= */

.dco-search-field {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 16px 20px;

    border-radius: 24px;

    background: #f8fbff;

    border: 1px solid transparent;

    margin-bottom: 14px;

    transition: all 0.3s ease;
}

.dco-search-field:focus-within {
    border-color: #0ea5e9;

    box-shadow:
        0 0 0 5px rgba(14, 165, 233, 0.12);

    background: white;


}

/* icon */

.dco-field-icon {
    width: 54px;
    height: 54px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #0ea5e9,
            #2563eb);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 18px;

    flex-shrink: 0;
}

/* content */

.dco-field-content {
    flex: 1;
}

.dco-field-content label {
    display: block;

    font-size: 13px;
    font-weight: 600;

    color: #0369a1;

    margin-bottom: 8px;
}

/* input */

.dco-field-content input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-size: 16px;

    color: #111827;
}

.dco-field-content input::placeholder {
    color: #9ca3af;
}

/* ========================= */
/* SEARCH BUTTON */
/* ========================= */

.dco-search-btn {
    width: 100%;

    margin-top: 4px;

    padding: 18px;

    border: none;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #0284c7,
            #2563eb);

    box-shadow:
        0 20px 35px rgba(37, 99, 235, 0.22);
    color: white;

    font-size: 15px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    cursor: pointer;

    transition: all 0.35s ease;


}

.dco-search-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 26px 40px rgba(37, 99, 235, 0.28);
}







/* PART 3 */

/* ========================= */
/* QUICK TAGS */
/* ========================= */

.dco-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 18px;
}

.dco-quick-tags span,
.dco-quick-tags button.dco-quick-tag {
    padding: 10px 16px;

    border-radius: 40px;

    background: #eef8ff;

    color: #0369a1;

    font-size: 13px;
    font-weight: 500;

    transition: all 0.3s ease;

    cursor: pointer;
}

.dco-quick-tags button.dco-quick-tag {
    border: none;
    font: inherit;
    cursor: pointer;
}

.dco-quick-tags span:hover,
.dco-quick-tags button.dco-quick-tag:hover {
    background: #0284c7;
    color: white;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dco-dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    width: 100%;

    background: white;

    border-radius: 22px;

    border: 1px solid rgba(14, 165, 233, 0.10);

    box-shadow:
        0 20px 40px rgba(14, 165, 233, 0.12);

    overflow: hidden;

    z-index: 50;
}




/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .dco-search-container {
        flex-direction: column;
    }

    .dco-search-left,
    .dco-search-card {
        width: 100%;
    }

    .dco-search-left h2 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {

    .dco-search-section {
        padding: 60px 8%;
    }


    .dco-search-left h2 {
        font-size: 38px;
    }

    .dco-search-left p {
        font-size: 16px;
    }

    .dco-search-card {
        padding: 24px;
    }

    .dco-search-field {
        padding: 18px;
    }
}

@media (max-width: 600px) {

    .dco-search-left h2 {
        font-size: 32px;
    }

    .dco-search-field {
        flex-direction: column;
        align-items: flex-start;
    }

    .dco-field-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .dco-search-btn {
        padding: 16px;
    }
}