/* =========================
 *  Root Variables
 *  ========================= */
:root {
  --sage: #b2c2a4;
  --lavender: #f6e1f9;
  --pink: #f9c5d1;
  --accent: #a64c79;
  --deep: #5a3e57;
  --text: #333;
  --light: #fff;
}

/* =========================
 *  Global
 *  ========================= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, var(--sage), var(--pink));
  color: var(--text);
}

/* =========================
 *  Header
 *  ========================= */
header {
  position: relative;
  background: var(--sage);
  padding: 40px 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.header-logo {
  max-width: 140px;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.25));
  transition: filter 0.4s ease, transform 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.6));
  transform: scale(1.05);
}

.header-text h1 {
  color: var(--deep);
  margin: 0 0 8px;
  font-size: 2.4rem;
}

.header-text p {
  margin: 0;
  color: var(--deep);
  font-size: 1.1rem;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--sage) 0%,
                              var(--lavender) 40%,
                              var(--pink) 60%,
                              var(--accent) 100%
  );
  background-size: 200% auto;
  animation: shimmerReverse 8s linear infinite, pulseHeader 5s infinite alternate;
}

/* =========================
 *  Sections
 *  ========================= */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: var(--deep);
  border-bottom: 2px solid var(--pink);
  display: inline-block;
  margin-bottom: 20px;
}

/* =========================
 *  Pricing Section
 *  ========================= */
.hourly-pricing {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pricing-card {
  background: var(--light);
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.featured-rate {
  max-width: 680px;
  width: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0.98),
                              rgba(246,225,249,0.9)
  );
  border: 3px solid var(--pink);
  border-radius: 18px;
  padding: 42px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-rate::before {
  content: "Starting Rate";
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--light);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
}

.featured-rate::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 115px;
  height: 115px;
  background: url("/assets/images/watermark.png") no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
}

.featured-rate:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.featured-rate h3 {
  color: var(--accent);
  font-size: 2rem;
  margin: 0 0 20px;
}

.starting-rate {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.starting-rate strong {
  display: block;
  margin-top: 10px;
  font-size: 2.6rem;
  color: var(--deep);
  text-shadow: 0 0 10px rgba(166,76,121,0.15);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 460px;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✨";
  margin-right: 10px;
}

.pricing-note {
  margin: 25px auto 0;
  max-width: 540px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  background: rgba(255,255,255,0.62);
  border-radius: 12px;
  padding: 15px 18px;
}

/* =========================
 *  Info Box
 *  ========================= */
.info-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: var(--light);
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.info-box::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 100px;
  height: 100px;
  background: url("/assets/images/watermark.png") no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.info-box:hover::after {
  opacity: 0.18;
}

.info-left,
.info-right {
  flex: 1;
}

.info-left h2,
.info-right h2 {
  color: var(--deep);
  border-bottom: 2px solid var(--pink);
  display: inline-block;
  margin-bottom: 15px;
}

.info-box p,
.info-box li {
  color: #555;
  line-height: 1.6;
}

.info-box ul {
  margin: 10px 0;
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 8px;
}

/* =========================
 *  Contact Section
 *  ========================= */
.contact {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  background: url("/assets/images/hydrangea.jpg") center/cover no-repeat;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
  color: var(--light);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(246,225,249,0.85),
                              rgba(90,62,87,0.58)
  );
  z-index: 0;
}

.contact::after {
  content: "✝";
  font-size: 2em;
  color: var(--light);
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1;
  text-shadow: 0 0 6px var(--light), 0 0 12px var(--accent), 0 0 18px var(--accent);
}

.contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact h2 {
  border: none;
  color: var(--light);
  font-family: Georgia, serif;
  margin-bottom: 15px;
}

.contact p {
  margin: 8px 0;
  font-size: 1.05em;
}

.contact a {
  color: var(--light);
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* =========================
 *  Scripture
 *  ========================= */
.scripture {
  margin: 25px auto 0;
  max-width: 620px;
  font-style: italic;
  font-size: 0.95em;
  line-height: 1.5em;
  background: rgba(255,255,255,0.75);
  color: var(--deep);
  padding: 15px;
  border-radius: 10px;
  animation: fadeIn 2s ease-in-out;
}

/* =========================
 *  CTA
 *  ========================= */
.cta {
  text-align: center;
  margin-top: 30px;
}

.cta a {
  background: var(--accent);
  color: var(--light);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta a:hover {
  background: #8b3c65;
  transform: translateY(-2px);
}

/* =========================
 *  Footer
 *  ========================= */
#footer {
position: relative;
background: var(--pink);
padding: 40px 20px 20px;
text-align: center;
margin-top: 40px;
}

#footer::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(
  to left,
  var(--sage) 0%,
                            var(--lavender) 40%,
                            var(--pink) 60%,
                            var(--accent) 100%
);
background-size: 200% auto;
animation: shimmerReverse 8s linear infinite, pulseFooter 5s infinite alternate;
}

.footer-bottom {
  color: var(--text);
  font-size: 0.95em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-bottom .separator {
  margin: 0 8px;
  color: var(--accent);
}

.neon-icon {
  font-size: 1.2em;
  color: var(--accent);
  text-shadow: 0 0 6px rgba(166,76,121,0.6);
}

.flame-flicker {
  animation: flicker 2s infinite alternate;
}

.brand-link {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

.brand-link:hover {
  color: var(--deep);
  text-decoration: underline;
}

.neon-tm {
  font-size: 0.8em;
  vertical-align: super;
  color: var(--accent);
}

/* =========================
 *  Animations
 *  ========================= */
@keyframes shimmerReverse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes pulseHeader {
  from {
    box-shadow: 0 0 6px rgba(178,194,164,0.5);
  }

  to {
    box-shadow: 0 0 14px rgba(166,76,121,0.7);
  }
}

@keyframes pulseFooter {
  from {
    box-shadow: 0 0 6px rgba(166,76,121,0.5);
  }

  to {
    box-shadow: 0 0 14px rgba(90,62,87,0.7);
  }
}

@keyframes flicker {
  from {
    opacity: 0.7;
    text-shadow: 0 0 6px var(--pink);
  }

  to {
    opacity: 1;
    text-shadow: 0 0 12px var(--accent);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
 *  Mobile
 *  ========================= */
@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .featured-rate {
    padding: 34px 22px;
  }

  .featured-rate h3 {
    font-size: 1.7rem;
  }

  .starting-rate strong {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 30px 15px;
  }

  .header-logo {
    max-width: 90px;
  }

  .header-text h1 {
    font-size: 2em;
  }

  .header-text p {
    font-size: 1em;
  }

  section {
    padding: 30px 15px;
  }

  .featured-rate {
    padding: 28px 18px;
  }

  .featured-rate::before {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }

  .starting-rate {
    font-size: 1.05rem;
  }

  .starting-rate strong {
    font-size: 1.85rem;
  }

  .pricing-features li {
    font-size: 1rem;
  }

  .info-box {
    padding: 24px 18px;
  }

  .contact {
    padding: 30px 15px;
    border-radius: 0;
  }

  .cta a {
    width: 100%;
    max-width: 340px;
  }
}
