/* ===============================
   CITYSETU GLOBAL THEME
================================= */

:root {
  --primary-blue: #1E2A78;
  --dark-blue: #16205a;
  --accent-orange: #F97316;
  --light-gray: #f4f6fb;
  --text-dark: #2c2c2c;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--light-gray);
  color: var(--text-dark);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
header {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-blue);
}

.logo img {
  width: 40px;
  margin-right: 10px;
}

.nav-links a {
  text-decoration: none;
  margin-left: 25px;
  color: var(--primary-blue);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-orange);
}
/* CITY SELECTOR */

.city-selector {
  background: var(--white);
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.city-selector label {
  font-weight: 500;
  color: var(--primary-blue);
}

.city-selector select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}
/* CITY SELECTOR */

.city-selector {
  background: var(--white);
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.city-selector label {
  font-weight: 500;
  color: var(--primary-blue);
}

.city-selector select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}
/* PROVIDER RATING */

.rating {
  color: #facc15;
  font-size: 14px;
  margin-bottom: 10px;
}

.jobs {
  font-size: 13px;
  color: #666;
}
/* CUSTOMER SIGNUP */

.signup-container {
  max-width: 500px;
  margin: 80px auto;
}

.signup-title {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-blue);
}

.btn-orange {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-orange:hover {
  opacity: 0.9;
}

/* BOOKING MODAL */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.modal h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
}
/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: var(--white);
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero h1 {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* CARD GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

/* CARD */
.card {
  background: var(--white);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.card h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* FORM */
form {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 50px auto;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

form input:focus {
  border-color: var(--primary-blue);
}

/* FOOTER */
footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 40px 0;
  margin-top: 60px;
}

footer h4 {
  margin-bottom: 15px;
}

footer a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

footer a:hover {
  color: var(--accent-orange);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
}
.city-selector {
  flex-direction: column;
}

.city-selector select {
  width: 100%;
}