/* EZ Home Solution - Custom Styles */
:root {
  --teal: #00c6c6;
  --teal-dark: #007a7a;
  --red: #d90000;
  --red-light: #ff2626;
  --dark: #1a1a2e;
  --text: #373a3c;
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; }

/* HEADER */
.ez-header {
  background: var(--dark);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.ez-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ez-logo img { height: 50px; width: auto; display: block; }
.ez-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}
.ez-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s;
}
.ez-nav a:hover { color: var(--teal); }
.ez-nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 8px 16px !important;
  border-radius: 4px;
}
.ez-nav-cta:hover { background: var(--red-light) !important; }
.ez-phone {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}
.ez-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

/* FORM */
.ez-form-wrap {
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  margin: 24px auto;
  box-shadow: 0 4px 20px rgba(0,198,198,0.15);
}
.ez-form-field {
  margin-bottom: 16px;
}
.ez-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.ez-form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color .2s;
}
.ez-form-field input:focus {
  outline: none;
  border-color: var(--teal);
}
.ez-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.ez-submit:hover { background: var(--red-light); }
.ez-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.ez-form-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

/* FOOTER */
.ez-footer {
  background: var(--dark);
  color: #aaa;
  padding: 50px 0 20px;
  margin-top: 60px;
}
.ez-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.ez-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ez-footer h4 { color: var(--teal); margin-bottom: 15px; }
.ez-footer ul { list-style: none; padding: 0; margin: 0; }
.ez-footer ul li { margin-bottom: 8px; }
.ez-footer a { color: #aaa; text-decoration: none; }
.ez-footer a:hover { color: var(--teal); }
.ez-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}
.ez-footer img { opacity: 0.8; margin-bottom: 15px; }

/* MOBILE */
@media (max-width: 768px) {
  .ez-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px; }
  .ez-nav.open { display: flex; }
  .ez-nav-toggle { display: block; }
  .ez-phone { font-size: 13px; }
  .ez-footer-cols { grid-template-columns: 1fr; gap: 30px; }
  .ez-header .container { flex-wrap: wrap; }
}
