/* بِسْمِ اللهِ الرَّحْمٰنِ الرَّحِيْمِ */
/* clean.ba modern responsive CSS */

/* --- Reset / Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* --- Header / Logo --- */
header {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

header .logo {
    margin-bottom: 10px;
}

header .logo img {
    height: 220px; /* big logo */
    max-width: 100%;
}

/* --- Nav --- */
nav {
    width: 100%;
}

nav a {
    color: #007acc;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* --- Container --- */
.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
}

/* --- Forms --- */
form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #007acc;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background-color: #005fa3;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 15px;
    background-color: #f4f4f4;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* --- Cleaners Cards --- */
.cleaners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cleaner-card {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cleaner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cleaner-card h3 {
    margin-bottom: 8px;
    color: #007acc;
}

.cleaner-card p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    nav {
        text-align: center;
        margin-top: 8px;
    }

    nav a {
        display: inline-block;
        margin: 5px;
    }

    form input, form select, form button {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    header .logo {
        flex-direction: column;
        text-align: center;
    }
}

