/* =========================================
   JANTA TOURS & TRAVELS
   PREMIUM WEBSITE CSS
========================================= */


/* =========================================
   1. GLOBAL SETTINGS
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

:root {
    --primary: #c79a45;
    --primary-dark: #a87c2f;
    --dark: #111827;
    --dark-light: #1f2937;
    --light: #f8f7f3;
    --white: #ffffff;
    --text: #555;
    --border: #e8e8e8;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   2. TOP BAR
========================================= */

.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 13px;
}

.top-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;

    min-height: 42px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar span,
.top-bar a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar i {
    color: var(--primary);
}


/* =========================================
   3. HEADER
========================================= */

.header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: #333;

    padding: 8px 0;

    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-dark);
}

.navbar a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 0;
    bottom: 0;

    background: var(--primary);

    transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--primary);
    color: #fff;

    padding: 13px 22px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 24px;
    cursor: pointer;
}


/* =========================================
   4. HERO SECTION
========================================= */

.hero {
    min-height: 700px;

    position: relative;

    background-image: url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding: 100px 5% 170px;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.15)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 750px;

    color: #fff;
}

.hero-tag {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

.hero-tag i {
    color: var(--primary);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.1;

    font-weight: 400;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    max-width: 650px;

    font-size: 16px;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;

    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);

    color: #fff;

    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--primary);
}


/* =========================================
   5. SEARCH BOX
========================================= */

.search-box {
    position: absolute;

    z-index: 5;

    bottom: -55px;

    left: 50%;

    transform: translateX(-50%);

    width: 90%;
    max-width: 1100px;

    background: #fff;

    padding: 20px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        auto;

    gap: 10px;

    border-radius: 8px;

    box-shadow:
        0 15px 50px
        rgba(0, 0, 0, 0.15);
}

.search-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 10px 15px;

    border-right: 1px solid var(--border);
}

.search-item > i {
    font-size: 22px;
    color: var(--primary);
}

.search-item small {
    display: block;

    font-size: 11px;

    color: #999;

    margin-bottom: 3px;
}

.search-item strong {
    font-size: 14px;
    color: #333;
}

.search-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 25px;

    background: var(--primary);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 5px;

    transition: 0.3s;
}

.search-button:hover {
    background: var(--primary-dark);
}


/* =========================================
   6. TRUST SECTION
========================================= */

.trust-section {
    padding: 100px 0 60px;

    background: var(--light);
}

.trust-container {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.trust-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}

.trust-item > i {
    font-size: 30px;

    color: var(--primary);

    margin-top: 5px;
}

.trust-item h4 {
    font-size: 15px;

    margin-bottom: 3px;
}

.trust-item p {
    font-size: 12px;

    color: #777;
}


/* =========================================
   7. SECTION COMMON
========================================= */

section {
    position: relative;
}

.about-section,
.packages-section,
.destinations-section,
.services-section,
.contact-section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

    color: var(--primary-dark);

    margin-bottom: 12px;
}

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
    font-family: 'DM Serif Display', serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.2;

    font-weight: 400;

    color: var(--dark);
}

.section-heading p {
    max-width: 450px;

    color: var(--text);

    font-size: 14px;
}

.centered {
    display: block;

    text-align: center;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

.centered p {
    margin: 15px auto 0;
}

.center-button {
    text-align: center;

    margin-top: 50px;
}


/* =========================================
   8. ABOUT SECTION
========================================= */

.about-section {
    background: #fff;
}

.about-section .container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-images {
    position: relative;

    min-height: 550px;
}

.about-image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 75%;
    height: 470px;

    overflow: hidden;

    border-radius: 5px;
}

.about-image-main img,
.about-image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.about-image-main:hover img,
.about-image-small:hover img {
    transform: scale(1.05);
}

.about-image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 270px;

    border: 10px solid #fff;

    overflow: hidden;

    border-radius: 5px;
}

.experience-badge {
    position: absolute;

    left: 30px;
    bottom: 45px;

    width: 145px;
    height: 145px;

    background: var(--primary);

    color: #fff;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.15);
}

.experience-badge strong {
    font-family: 'DM Serif Display', serif;

    font-size: 40px;

    line-height: 1;
}

.experience-badge span {
    font-size: 11px;

    line-height: 1.4;

    margin-top: 5px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content h2 span {
    display: block;

    color: var(--primary);
}

.about-content p {
    color: var(--text);

    font-size: 14px;

    margin-bottom: 18px;
}

.about-features {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin: 25px 0 30px;
}

.about-features div {
    font-size: 13px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;
}

.about-features i {
    color: var(--primary);
}


/* =========================================
   9. PACKAGES
========================================= */

.packages-section {
    background: var(--light);
}

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.package-card {
    background: #fff;

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 5px 25px
        rgba(0, 0, 0, 0.05);

    transition: 0.4s;
}

.package-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.12);
}

.package-image {
    position: relative;

    height: 230px;

    overflow: hidden;
}

.package-image img {
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-label {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 12px;

    background: var(--primary);

    color: #fff;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    border-radius: 3px;
}

.package-content {
    padding: 22px;
}

.package-content h3 {
    font-family: 'DM Serif Display', serif;

    font-size: 24px;

    font-weight: 400;

    margin-bottom: 10px;

    color: var(--dark);
}

.package-content p {
    font-size: 13px;

    color: #777;

    line-height: 1.7;

    margin-bottom: 18px;
}

.package-meta {
    display: flex;

    gap: 15px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);

    font-size: 11px;

    color: #777;
}

.package-meta i {
    color: var(--primary);
}

.package-link {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 17px;

    font-size: 12px;

    font-weight: 700;

    color: var(--primary-dark);
}


/* =========================================
   10. DESTINATIONS
========================================= */

.destinations-section {
    background: #fff;
}

.destination-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-template-rows:
        250px 250px;

    gap: 15px;
}

.destination-card {
    position: relative;

    overflow: hidden;

    border-radius: 5px;
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0, 0, 0, 0.8)
        );
}

.destination-overlay {
    position: absolute;

    z-index: 2;

    left: 25px;
    bottom: 22px;

    color: #fff;
}

.destination-overlay span {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: 0.8;
}

.destination-overlay h3 {
    font-family: 'DM Serif Display', serif;

    font-size: 30px;

    font-weight: 400;
}


/* =========================================
   11. SERVICES
========================================= */

.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    background: #fff;

    padding: 35px 28px;

    border-radius: 6px;

    transition: 0.4s;

    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);

    border-bottom-color: var(--primary);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f0e2;

    color: var(--primary-dark);

    border-radius: 50%;

    font-size: 24px;

    margin-bottom: 22px;
}

.service-card h3 {
    font-family: 'DM Serif Display', serif;

    font-size: 25px;

    font-weight: 400;

    margin-bottom: 12px;
}

.service-card p {
    color: #777;

    font-size: 13px;

    margin-bottom: 20px;
}

.service-card a {
    font-size: 12px;

    font-weight: 700;

    color: var(--primary-dark);
}

.service-card a i {
    margin-left: 5px;
}


/* =========================================
   12. CTA
========================================= */

.cta-section {
    min-height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    background-image:
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: #fff;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.65);
}

.cta-content {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 750px;
}

.cta-content .section-tag {
    color: var(--primary);
}

.cta-content h2 {
    font-family: 'DM Serif Display', serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.2;

    font-weight: 400;

    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 30px;
}


/* =========================================
   13. CONTACT
========================================= */

.contact-section {
    background: #fff;
}

.contact-section .container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info h2 span {
    display: block;

    color: var(--primary);
}

.contact-info > p {
    font-size: 14px;

    color: #777;

    max-width: 500px;

    margin-bottom: 35px;
}

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.contact-item {
    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7f0e2;

    color: var(--primary-dark);

    border-radius: 50%;
}

.contact-item h4 {
    font-size: 14px;

    margin-bottom: 3px;
}

.contact-item p {
    font-size: 13px;

    color: #777;

    line-height: 1.7;
}

.contact-form-box {
    padding: 40px;

    background: var(--light);

    border-radius: 8px;

    box-shadow:
        0 10px 40px
        rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-family: 'DM Serif Display', serif;

    font-size: 30px;

    font-weight: 400;

    margin-bottom: 8px;
}

.contact-form-box > p {
    font-size: 13px;

    color: #777;

    margin-bottom: 25px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #ddd;

    background: #fff;

    padding: 13px 15px;

    border-radius: 4px;

    outline: none;

    font-size: 13px;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-button {
    border: none;

    width: 100%;
}


/* =========================================
   14. FOOTER
========================================= */

.footer {
    background: var(--dark);

    color: #fff;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 50px;
}

.footer-logo {
    width: 190px;

    margin-bottom: 20px;

    background: #fff;

    padding: 8px;

    border-radius: 5px;
}

.footer-about p {
    color: #aeb4be;

    font-size: 13px;

    max-width: 300px;
}

.social-links {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);

    transform: translateY(-3px);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    font-size: 16px;

    margin-bottom: 12px;
}

.footer-column a {
    font-size: 13px;

    color: #aeb4be;

    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--primary);

    padding-left: 5px;
}

.footer-column p {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    font-size: 12px;

    color: #aeb4be;

    margin-bottom: 5px;
}

.footer-column p i {
    color: var(--primary);

    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    width: 90%;
    max-width: 1200px;

    margin: auto;

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #8f96a2;

    font-size: 11px;
}


/* =========================================
   15. WHATSAPP BUTTON
========================================= */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25d366;

    color: #fff;

    border-radius: 50%;

    font-size: 28px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* =========================================
   16. RESPONSIVE TABLET
========================================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 18px;
    }

    .navbar a {
        font-size: 13px;
    }

    .nav-button {
        padding: 11px 15px;
    }

    .package-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   17. MOBILE MENU
========================================= */

@media (max-width: 850px) {

    .top-bar {
        display: none;
    }

    .nav-container {
        min-height: 72px;
    }

    .logo img {
        width: 150px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        background: #fff;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 15px 5%;

        box-shadow:
            0 10px 20px
            rgba(0, 0, 0, 0.08);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #eee;
    }

    .navbar a::after {
        display: none;
    }

    .hero {
        min-height: 680px;

        padding:
            100px 5%
            200px;
    }

    .search-box {
        grid-template-columns: 1fr;

        bottom: -160px;
    }

    .search-item {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .search-button {
        padding: 15px;
    }

    .about-section .container,
    .contact-section .container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-images {
        min-height: 500px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================
   18. MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .hero {
        min-height: 650px;

        padding:
            80px 5%
            230px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .search-box {
        width: 92%;
    }

    .trust-section {
        padding-top: 220px;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .about-section,
    .packages-section,
    .destinations-section,
    .services-section,
    .contact-section {
        padding: 70px 0;
    }

    .about-images {
        min-height: 420px;
    }

    .about-image-main {
        width: 85%;
        height: 350px;
    }

    .about-image-small {
        width: 55%;
        height: 210px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;

        left: 10px;
        bottom: 30px;
    }

    .experience-badge strong {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 15px;
    }

    .package-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 250px);
    }

    .destination-card.large {
        grid-row: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;
    }

}


/* =========================================
   19. ANIMATIONS
========================================= */

@keyframes fadeUp {

    from {
        opacity: 0;

        transform: translateY(30px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

.hero-content {
    animation:
        fadeUp 1s ease forwards;
}


/* =========================================
   20. SELECTION
========================================= */

::selection {
    background: var(--primary);

    color: #fff;
}
/* =========================================
   SMART TRIP SEARCH
========================================= */

.search-item select {

    border: none;

    outline: none;

    background: transparent;

    color: #1c2732;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    width: 100%;

    margin-top: 5px;

}


.search-item select option {

    color: #1c2732;

    background: #fff;

}


.search-button {

    border: none;

    cursor: pointer;

    font-family: "Inter", sans-serif;

}


.search-result {

    display: none;

    max-width: 900px;

    margin: 25px auto 0;

    padding: 18px 25px;

    background: #fff;

    border-radius: 8px;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0,0,0,.10);

    color: #1c2732;

    font-size: 14px;

}


.search-result.show {

    display: block;

}


.search-result strong {

    color: #b1842f;

}


/* MOBILE */

@media(max-width: 900px) {

    .search-box {

        flex-direction: column;

        gap: 15px;

        padding: 25px;

    }


    .search-item {

        width: 100%;

    }


    .search-button {

        width: 100%;

        justify-content: center;

    }

}
