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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ── Header ── */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
  transition: color 0.2s;
}

nav a:hover {
  color: #7D532B;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #7D532B;
  color: #fff;
}

.btn-primary:hover {
  background: #6a4624;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-teal {
  background: #8ACDCA;
  color: #fff;
}

.btn-teal:hover {
  background: #72b8b5;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  background: url('https://levleyeled.org/wp-content/uploads/2023/11/slide1.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(125, 83, 43, 0.7);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 strong {
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ── Quote Banner ── */
.quote-banner {
  background: #f7f1e8;
  padding: 50px 20px;
  text-align: center;
}

.quote-banner blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-style: italic;
  color: #7D532B;
  line-height: 1.7;
}

.quote-banner cite {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: #a08060;
}

.quote-banner .btn {
  margin-top: 25px;
}

/* ── Section Styles ── */
.section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: #7D532B;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-text {
  margin-left: auto;
  margin-right: auto;
}

/* ── About Section ── */
.about {
  background: #fff;
}

/* ── Services Grid ── */
.services {
  background: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5f4;
  border-radius: 50%;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7D532B;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-banner-brown {
  background: linear-gradient(135deg, #7D532B, #a06e3e);
}

.cta-banner-teal {
  background: linear-gradient(135deg, #6bb5b2, #8ACDCA);
}

.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
footer {
  background: #2a1f14;
  color: #ccc;
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
}

/* ── SMS Opt-in ── */
.footer-sms {
  max-width: 450px;
}

.sms-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-form input[type="tel"] {
  padding: 10px 14px;
  border: 1px solid #4a3a2a;
  background: #3a2a1a;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
}

.sms-form input[type="tel"]::placeholder {
  color: #777;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #bbb;
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #8ACDCA;
}

.consent-disclosure {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
}

.consent-disclosure a {
  color: #8ACDCA;
  text-decoration: underline;
}

.sms-form .btn {
  align-self: flex-start;
}

.sms-confirm {
  margin-top: 16px;
}

.sms-confirm > p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 12px;
}

.confirm-row {
  display: flex;
  gap: 8px;
}

.confirm-row input {
  padding: 10px 14px;
  border: 1px solid #4a3a2a;
  background: #3a2a1a;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 180px;
}

.confirm-row input::placeholder {
  color: #777;
}

.sms-success {
  color: #8ACDCA;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #3a2a1a;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

.footer-bottom p {
  margin: 4px 0;
}

/* ── Legal Pages ── */
.legal-page {
  padding: 60px 20px 80px;
  background: #fff;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #7D532B;
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 40px;
}

.legal-inner section {
  margin-bottom: 35px;
}

.legal-inner h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #7D532B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.legal-inner h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
  margin: 14px 0 8px;
}

.legal-inner p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-inner ul {
  padding-left: 24px;
  margin-bottom: 10px;
  list-style: disc;
}

.legal-inner li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-inner a {
  color: #8ACDCA;
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
  }

  nav ul {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
