/* GLOBAL LAYOUT */
html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background: #f5f7fb;
  color: #0f172a;
  line-height: 1.6;
  font-size: 18px; /* easier for seniors */
  display: flex;
  flex-direction: column;
}

/* Remove underlines globally */
a {
  text-decoration: none;
  color: inherit;
}

/* LAYOUT HELPERS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links a {
  margin-left: 26px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  transition: 0.25s ease;
}

/* NAV HOVER: bigger + bolder, NO color change */
.nav-links a:hover {
  font-weight: 700;
  transform: scale(1.10);
  letter-spacing: 0.5px;
}

/* HERO SECTION */
.hero {
  padding: 40px 20px 10px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
}

/* HERO CARD */
.hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

/* GENERIC CARDS */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
}

.card p {
  font-size: 16px;
  color: #475569;
}

/* CLEAN, LUXURY PRICING SECTION */
.clean-pricing {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Luxury pricing cards */
.luxury-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

/* Hover effect */
.luxury-card:hover {
  background: #ffe6f2; /* soft luxury pink */
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

/* PRICING CARDS */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.price-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.price-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
}

.price-card p {
  font-size: 16px;
  color: #475569;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 4px;
}

.pricing-note {
  margin-top: 26px;
  font-size: 16px;
  color: #64748b;
}



/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}

/* CONTACT INFO CARD (NOT FORM) */
.contact-grid .card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

/* CONTACT FORM (NO PINK HOVER) */
form {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

label {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 14px;
  box-sizing: border-box;
}

/* PINK HOVER FOR ALL CARDS EXCEPT FORM */
.card:hover,
.price-card:hover,
.hero-card:hover,
.contact-grid .card:hover,
.about-grid .card:hover {
  background: #ffe6f2; /* soft luxury pink */
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

/* BUTTONS */
button,
.btn {
  background: #2563eb;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

button:hover,
.btn:hover {
  background: #1e40af;
}

/* SECTION TITLES */
.section-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 24px;
}

/* LUXURY FOOTER */
footer {
  margin-top: auto;
  background: #0f172a;
  color: #e5e7eb;
  padding: 32px 20px 18px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

/* Footer brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.footer-logo i {
  font-size: 22px;
  color: #ff7abf; /* luxury pink accent */
}

.footer-tagline {
  margin-top: 6px;
  font-size: 14px;
  color: #cbd5f5;
}

/* Footer icon columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.footer-icons a i {
  font-size: 20px;
  transition: 0.25s ease;
}

/* Icon hover: subtle, luxury */
.footer-icons a:hover i {
  transform: scale(1.15);
  color: #ff7abf;
}

/* Footer bottom line */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
  padding-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .nav-links {
    margin-top: 10px;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 18px;
    font-size: 17px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}
/* ================================
   IMAGE POLISHING & ANIMATION
   ================================ */

/* Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-image,
.card-image,
.pricing-bg {
  animation: fadeIn 0.9s ease forwards;
}

/* HERO IMAGE */
.hero-image {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* CARD IMAGES */
.card-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 14px;
  display: block;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

/* Hover lift ONLY on cards */
.card:hover .card-image,
.price-card:hover .card-image {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* PRICING BACKGROUND IMAGE */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18; /* soft, subtle, luxury */
  z-index: -1;
  filter: blur(3px);
}

/* CONTACT IMAGE */
.contact-grid .card-image {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 700px) {
  .hero-image {
    border-radius: 14px;
  }

  .card-image {
    border-radius: 12px;
  }

  .pricing-bg {
    opacity: 0.22;
  }
}
