@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ======================
   GLOBAL
====================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F4F4F4;
    color: #222;
    text-align: center;

    margin: 0;
    padding: 8px;
}


/* ======================
   HEADER
====================== */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 12px;
    border-bottom: 2px solid #eee;
    gap: 12px;
    flex-wrap: wrap;
}

.logo {
    width: 60px;
    height: auto;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 3px 0;
    font-weight: 500;
}


/* ======================
   MAIN CARD
====================== */
.container {
    max-width: 500px;
    margin: 8px auto 20px auto;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);

    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* ======================
   HEADINGS
====================== */
h1 {
    font-size: 24px;
    margin: 16px 0 10px 0;
}

h3 {
    margin: 4px 0 16px 0;
}


/* ======================
   FORM AREA
====================== */
.search-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.search-box > div {
    width: 100%;
}


/* ======================
   MODERN DROPDOWN
====================== */
.search-box select {
    width: 100%;
    padding: 12px 15px;

    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;

    background-color: #fff;
    color: #333;

    appearance: none;
    cursor: pointer;

    /* custom arrow */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23007BFF" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

/* subtle focus */
.search-box select:focus {
    outline: none;
    border-color: #007BFF;
}


/* ======================
   MINIMAL THEME BUTTON
====================== */
/* ✅ Simple Clean Button */
.search-box button {
    width: 100%;
    padding: 12px 14px;

    font-size: 15px;
    font-weight: 500;

    background: #007BFF;
    color: #fff;

    border: 1px solid #007BFF;
    border-radius: 10px;

    cursor: pointer;
}

/* light hover only (no animation) */
.search-box button:hover {
    background: #0056b3;
}


/* ======================
   TABLET
====================== */
@media (max-width: 768px) {

    .container {
        max-width: 92%;
        padding: 16px;
    }

    h1 {
        font-size: 22px;
    }

    .logo {
        width: 50px;
    }
}


/* ======================
   MOBILE
====================== */
@media (max-width: 480px) {

    body {
        padding: 5px;
    }

    .container {
        max-width: 96%;
        padding: 14px;
        border-radius: 12px;
    }

    .header {
    flex-direction: row;   /* side by side */
    justify-content: center;
    align-items: center;
    gap: 10px;
}


    .contact-info {
    text-align: left;
    font-size: 14px;
}


    .logo {
        width: 60px;
    }

    h1 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .search-box select,
    .search-box button {
        font-size: 14px;
        padding: 11px;
    }
}
