/* Public Notice Property Ad CSS */

/* --- Variables --- */
/*:root {*/
  --primary: #991b1b; /* Dark Cherry Red */
  --primary-dark: #7f1d1d; /* Darker Cherry Red */
  --accent: #dc2626; /* Bright Red */
/*  --accent-hover: #b91c1c;*/
/*  --text-dark: #1e293b;*/
/*  --text-light: #64748b;*/
  --bg-light: #fff5f5; /* Very Light Red Tint */
/*  --white: #ffffff;*/
  --border-color: #fecaca; /* Light Red Border */
/*  --shadow-sm:*/
/*    0 4px 6px -1px rgba(153, 27, 27, 0.1),*/
/*    0 2px 4px -1px rgba(153, 27, 27, 0.06);*/
/*  --shadow-md:*/
/*    0 10px 15px -3px rgba(153, 27, 27, 0.1),*/
/*    0 4px 6px -2px rgba(153, 27, 27, 0.05);*/
/*  --shadow-lg:*/
/*    0 20px 25px -5px rgba(153, 27, 27, 0.15),*/
/*    0 10px 10px -5px rgba(153, 27, 27, 0.04);*/
/*}*/

/* --- Global Styles --- */
/*html {*/
/*  overflow-x: hidden;*/
/*  scroll-behavior: smooth;*/
/*}*/

/*body {*/
/*  font-family: "DM Sans", sans-serif;*/
/*  color: var(--text-dark);*/
/*  line-height: 1.6;*/
/*  background-color: var(--white);*/
/*  overflow-x: hidden;*/
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
/*}*/

/* Hide scrollbar for Chrome, Safari and Opera */
/*body::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

/*h1,*/
/*h2,*/
/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*  font-family: "Crimson Pro", serif;*/
/*  font-weight: 700;*/
/*  color: var(--primary);*/
/*}*/

/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 1.5rem;*/
/*}*/

.section-padding {
  padding: 5rem 0;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  padding: 0.9rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* --- Hero Section Immersive Redesign --- */
.property-hero-immersive {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  padding: 12rem 0 10rem;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.8s ease-out;
}

.property-hero-immersive h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero-subline {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-description-centered {
  max-width: 750px;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions-centered {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  background: var(--accent-hover);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.trust-strip-centered {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  width: 100%;
}

.trust-strip-centered p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-trust-logos-glass {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  flex-wrap: wrap;
}

/* Scroll Animation */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.7;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 24px;
    opacity: 0;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-down {
  animation: fadeDown 1s ease-out forwards;
}

@media (max-width: 768px) {
  .property-hero-immersive h1 {
    font-size: 2.8rem;
  }
  .hero-subline {
    font-size: 1.5rem;
  }
}

/* Hero Visuals & Animations */
/* Hero Visuals & Animations */
.hero-visuals {
  position: relative;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-main-container {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(153, 27, 27, 0.15);
  border: 10px solid rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 650px; /* Increased max-width */
  aspect-ratio: 4/3; /* Enforce specific aspect ratio */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visual-main-container:hover {
  transform: translateY(-10px);
}

.main-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.visual-main-container:hover .main-hero-img {
  transform: scale(1.1);
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}

/* Floating Cards Re-positioned */
/* Floating Icons */
.float-icon-wrapper {
  position: absolute;
  background: white;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.float-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.icon-pos-1 {
  top: 10%;
  left: -20px;
  animation: float 5s ease-in-out infinite;
}
.icon-pos-2 {
  bottom: 15%;
  right: -30px;
  animation: float 6s ease-in-out infinite 1s;
}
.icon-pos-3 {
  top: 40%;
  right: -40px;
  animation: float 7s ease-in-out infinite 2s;
}

.float-verified-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  animation: bounceIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span:first-child {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-text span:last-child {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 800;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.pulse-btn {
  animation: pulse 2s infinite;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Trust/Social Proof Section --- */
.trust-section {
  background-color: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-wrapper {
  text-align: center;
}

.trust-text {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logo-grid img {
  height: 80px; /* Increased size */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%); /* Premium look: start grayscale */
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.logo-grid img:hover {
  transform: scale(1.15) translateY(-5px); /* Pop effect */
  /* Combine filters: remove grayscale and add shadow */
  filter: grayscale(0%) drop-shadow(0 10px 20px rgba(153, 27, 27, 0.1));
  opacity: 1;
}

/* --- What Is Section Redesign --- */
.what-is-section {
  background: var(--white);
  overflow: hidden; /* For blobs */
}

.what-is-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Visual Side */
.section-visual {
  position: relative;
  border-radius: 20px;
}

.visual-bg-blob {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #fef2f2; /* Light Red */
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-3deg) scale(1.1);
  transition: all 5s ease-in-out infinite alternate;
}

.feature-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.section-visual:hover .feature-img {
  transform: translateY(-5px);
}

.floating-stat {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(153, 27, 27, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  border-left: 4px solid var(--accent);
  animation: float 4s ease-in-out infinite;
}

.stat-icon {
  font-size: 1.8rem;
}

.floating-stat div {
  display: flex;
  flex-direction: column;
}

.floating-stat strong {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.floating-stat span {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Content Side */
.section-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.text-gray {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  display: grid;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.icon-check {
  min-width: 24px;
  height: 24px;
  background: #fee2e2;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  font-size: 0.8rem;
}

.pro-tip-box {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1px solid #fecaca;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.tip-icon {
  font-size: 1.5rem;
  background: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.tip-content strong {
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.tip-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .what-is-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .section-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-list,
  .pro-tip-box {
    text-align: left;
  }
}

/* --- Why Important Grid Redesign --- */
.why-important-section {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.importance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards in a row (2x2 grid) */
  gap: 3rem; /* Increased gap */
}

.importance-card {
  background: var(--white);
  padding: 3rem; /* Increased padding */
  border-radius: 24px; /* More rounded */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); /* Softer shadow */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.importance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(153, 27, 27, 0.15);
  border-color: rgba(153, 27, 27, 0.1);
}

/* Gradient line at top on hover */
.importance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.importance-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrapper {
  width: 72px; /* Larger icon wrapper */
  height: 72px;
  background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.importance-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(153, 27, 27, 0.25);
}

.card-icon-wrapper svg {
  width: 36px; /* Larger icon */
  height: 36px;
  stroke-width: 2;
}

@media (max-width: 900px) {
  .importance-grid {
    grid-template-columns: 1fr; /* Stack on smaller screens */
    gap: 2rem;
  }
}

.importance-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.importance-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .importance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .importance-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Notice Types Grid Section --- */
.notice-types-section {
  background-color: #f8fafc;
  padding: 5rem 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-centered h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.notice-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in a row */
  gap: 2rem;
  padding: 1rem;
}

.notice-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); /* Softer, larger shadow */
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.notice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(153, 27, 27, 0.15);
  border-color: rgba(153, 27, 27, 0.1);
}

@media (max-width: 992px) {
  .notice-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .notice-types-grid {
    grid-template-columns: 1fr;
  }
}

.notice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.notice-card:hover::before {
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #fef2f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.notice-card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.notice-card:hover .card-icon svg {
  transform: rotateY(
    -180deg
  ); /* Counter rotate icon so it stays legible if needed, or let it flipping */
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.notice-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.notice-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* --- When Required (Redesigned) --- */
.when-required-section {
  background: linear-gradient(135deg, var(--primary) 0%, #7f1d1d 100%);
  color: var(--white);
  padding: 6rem 0; /* More spacing */
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.when-required-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.when-required-section .section-header {
  margin-bottom: 3.5rem;
}

.when-required-section .section-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.when-required-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.scenario-card {
  background: rgba(255, 255, 255, 0.08); /* Glass effect */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.scenario-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scenario-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: all 0.3s ease;
}

.scenario-card:hover .scenario-icon {
  background: #fee2e2; /* Light red bg */
  color: var(--primary);
  transform: scale(1.1);
}

.scenario-icon svg {
  width: 22px;
  height: 22px;
}

.scenario-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
  font-family: "DM Sans", sans-serif; /* Keep body font for list */
  transition: color 0.3s ease;
}

.scenario-card:hover h3 {
  color: var(--primary);
  font-weight: 600;
}

/* Highlight Card Style (Last item) */
.scenario-card.highlight-scenario {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.scenario-card.highlight-scenario:hover {
  background: var(--white);
}

@media (max-width: 768px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
  .scenario-card {
    padding: 1rem;
  }
}

/* --- Sample Format Redesign --- */
.sample-format-section {
  background-color: #f8fafc; /* Slate 50 */
  padding: 6rem 0;
}

.sample-wrapper-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Left Content */
.badge-pill {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.sample-context h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.sample-context p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sample-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.sample-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  margin-right: 15px;
  flex-shrink: 0;
}

.sample-features-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.sample-features-list span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.action-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
}

/* Right: Legal Paper Visual */
.legal-paper-container {
  position: relative;
  padding: 1rem;
}

.legal-paper {
  background: #fff;
  padding: 3rem 4rem;
  position: relative;
  z-index: 2;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  /* Paper Texture hint */
  background-image: linear-gradient(to bottom, #ffffff, #fafafa);
}

/* Paper Stack Effect */
.legal-paper::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background: #f1f5f9;
  z-index: -1;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
}

.legal-paper::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: #e2e8f0;
  z-index: -2;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
}

.paper-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.paper-header h3 {
  font-family: "Crimson Pro", serif;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
}

.paper-body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.8;
  text-align: justify;
}

.paper-body p {
  margin-bottom: 1.5rem;
}

.property-details-box {
  background: #f8fafc;
  border-left: 3px solid var(--text-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95em;
  font-style: italic;
  color: #475569;
}

.paper-footer {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.signature {
  font-family: "Crimson Pro", serif;
  line-height: 1.4;
  color: #334155;
  font-size: 1rem;
}

/* Digital Stamp */
.stamp-seal {
  width: 80px;
  height: 80px;
  border: 3px double #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transform: rotate(-15deg);
  opacity: 0.7;
}

.seal-inner {
  text-align: center;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.2;
}

.seal-inner span {
  display: block;
}

@media (max-width: 991px) {
  .sample-wrapper-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-paper {
    padding: 2rem;
  }
}

/* --- Newspapers Available --- */
.newspapers-section {
  background-color: var(--bg-light);
}

.newspaper-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.newspaper-chip {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.cities-list {
  text-align: center;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Booking Process Redesign (Horizontal Stepper) --- */
.process-section {
  background-color: var(--white);
}

.horizontal-process-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
}

/* Connecting Dotted Line Background */
.horizontal-process-wrapper::before {
  content: "";
  position: absolute;
  top: 60px; /* Center with icons */
  left: 50px;
  right: 50px;
  border-top: 2px dashed #e2e8f0;
  z-index: 0;
}

.h-step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
}

.h-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.h-step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin-bottom: -15px; /* Overlap with number */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--primary);
}

.h-step:hover .h-step-icon {
  transform: translateY(-10px);
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(153, 27, 27, 0.3);
}

.h-step-icon svg {
  width: 32px;
  height: 32px;
}

.h-step-count {
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 4px solid var(--white); /* Visual Separation */
}

.h-step-body {
  padding: 0 1rem;
}

.h-step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.h-step-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.step-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.step-link:hover {
  border-bottom-color: var(--accent);
}

.badge-success {
  display: inline-block;
  background-color: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .horizontal-process-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .horizontal-process-wrapper::before {
    display: none; /* Hide horizontal line on mobile */
  }

  .h-step {
    display: flex;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .h-step-header {
    margin-bottom: 0;
  }

  .h-step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }

  .h-step-icon svg {
    width: 24px;
    height: 24px;
  }

  .h-step-count {
    position: absolute;
    bottom: -10px;
    right: -10px;
  }

  .h-step-body {
    padding: 0;
    padding-top: 0.5rem;
  }
}

/* --- Pricing Section Redesign (Tiers) --- */
.pricing-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.pricing-tier-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.pricing-tier {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  flex: 1;
  min-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-tier:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Popular Tier Highlight */
.popular-tier {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 15px -3px rgba(153, 27, 27, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.popular-tier:hover {
  transform: scale(1.05) translateY(-5px);
}

.pop-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(153, 27, 27, 0.3);
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.tier-subtitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tier-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "DM Sans", sans-serif;
}

.tier-price .period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-tier.popular-tier .tier-price {
  color: var(--primary);
}

.tier-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.tier-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.tier-features li.dim {
  color: #94a3b8;
  opacity: 0.8;
}

.check {
  color: #16a34a; /* Green check */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

.cross {
  color: #94a3b8;
  margin-right: 14px; /* Align visually with check */
  margin-left: 2px;
}

.btn-tier-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-tier-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-tier-solid {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary); /* Keep consistent height */
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(153, 27, 27, 0.2);
  transition: all 0.2s;
}

.btn-tier-solid:hover {
  background: var(--accent);
  box-shadow: 0 6px 10px rgba(153, 27, 27, 0.3);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 991px) {
  .pricing-tier-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pricing-tier {
    width: 100%;
    max-width: 450px;
  }

  .popular-tier {
    transform: scale(1); /* Reset scale on mobile */
    margin: 1rem 0; /* Add space for badge */
  }

  .popular-tier:hover {
    transform: translateY(-5px);
  }
}

/* --- Why Choose Us Redesign --- */
.why-choose-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.why-card {
  padding: 2rem;
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft large shadow */
  border-color: #cbd5e1;
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: #fef2f2;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* --- FAQ Section --- */
/* Styles inherited from style.css */

/* --- Lead Form Section --- */
.lead-form-section {
  background-color: #f1f5f9;
}

.lead-form-wrapper {
  background: var(--white);
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--accent);
}

.lead-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
  width: 100%;
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: var(--accent-hover);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-bullets li {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .cards-grid,
  .checklist-grid,
  .pricing-grid,
  .features-grid-6,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .property-hero h1 {
    font-size: 2.5rem;
  }
  .what-is-wrapper {
    grid-template-columns: 1fr;
  }
  .cards-grid,
  .checklist-grid,
  .pricing-grid,
  .features-grid-6,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .format-box {
    padding: 2rem;
  }
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: var(--white) !important;
  /* Other styles inherited from style.css */
}

/* --- Services Grid Section --- */
.services-section {
  background-color: #fff5f5; /* Light red tint */
  padding: 8rem 0;
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(153, 27, 27, 0.05); /* Subtle red border */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(153, 27, 27, 0.15);
  border-color: rgba(153, 27, 27, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: #fff1f2; /* Light pink bg */
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
  border-radius: 50%;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  font-family: "Crimson Pro", serif;
  line-height: 1.4;
}

.service-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

/* --- Process Timeline Section --- */
.process-timeline-section {
  background-color: var(--white);
  padding: 8rem 0;
  overflow: hidden;
}

.process-grid-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

/* Connecting Line */
.process-grid-custom::before {
  content: "";
  position: absolute;
  top: 40px; /* Aligns with icon center */
  left: 10%; /* Start a bit inside */
  width: 80%; /* Don't go edge to edge */
  height: 2px;
  background: #fee2e2; /* Very light red line */
  z-index: 0;
}

.process-step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  border: 4px solid #fee2e2; /* Light red border */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-step-card:hover .step-icon-wrapper {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(153, 27, 27, 0.2);
}

.step-number-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
}

.step-icon-wrapper svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.process-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.process-step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid-custom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-grid-custom::before {
    display: none; /* Hide line on mobile */
  }

  .process-step-card {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
    background: #fff5f5;
    padding: 2rem;
    border-radius: 16px;
  }

  .step-icon-wrapper {
    margin-bottom: 0;
    min-width: 60px; /* Prevent shrink */
    width: 60px;
    height: 60px;
  }

  .step-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Popular Newspapers Section --- */
.newspapers-section {
  background-color: var(--bg-light);
  padding: 8rem 0;
  overflow: hidden; /* Prevent scrollbars */
}

.newspapers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.newspaper-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(153, 27, 27, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.newspaper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(153, 27, 27, 0.12);
  border-color: rgba(153, 27, 27, 0.1);
}

.newspaper-icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.newspaper-icon {
  width: 50px;
  height: 50px;
  background: #fff1f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.newspaper-icon svg {
  width: 24px;
  height: 24px;
}

.newspaper-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-dark);
}

.newspaper-list {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .newspapers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Documents Required Section --- */
.documents-section {
  background-color: var(--white);
  padding: 8rem 0;
  overflow: hidden;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.document-card {
  background: var(--bg-light); /* Light red tint background */
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(153, 27, 27, 0.05); /* Subtle border */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  min-height: 100px;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(153, 27, 27, 0.12);
  background: var(--white); /* White on hover for contrast */
  border-color: rgba(153, 27, 27, 0.15);
}

.doc-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.document-card:hover .doc-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: rotate(10deg);
}

.doc-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.document-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.4;
}

.doc-helper-text {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-light);
  font-style: italic;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Why Choose Us Grid Section --- */
.why-choose-section {
  background-color: var(--bg-light);
  padding: 8rem 0;
  overflow: hidden;
}

.why-grid-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-card-custom {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(153, 27, 27, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(153, 27, 27, 0.15);
  border-color: rgba(153, 27, 27, 0.1);
}

.why-card-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    rgba(254, 226, 226, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: height 0.4s ease;
  z-index: 0;
}

.why-card-custom:hover::after {
  height: 100%;
}

.why-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #fff1f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.why-card-custom:hover .why-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.why-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.why-card-custom h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
  font-family: "Crimson Pro", serif;
  position: relative;
  z-index: 1;
}

.why-card-custom p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .why-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid-custom {
    grid-template-columns: 1fr;
  }
}

/* --- New Tabbed Notice Section Styles --- */
.notice-tabs-section {
  background-color: #f8fafc;
  padding: 5rem 0;
}

.notice-tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 8px;
  border-radius: 16px; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.notice-tab-btn {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  flex: 1 1 auto;
  text-align: center;
}

.notice-tab-btn:hover {
    background-color: #f1f5f9;
    color: #334155;
}

.notice-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(153, 27, 27, 0.25);
}

.notice-tab-pane {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.notice-tab-pane.active {
  display: block;
}

.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sub-service-card {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sub-service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.sub-service-card:hover::after {
    width: 100%;
}

.sub-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
  border-color: rgba(153, 27, 27, 0.1);
}

.sub-service-icon {
  width: 54px;
  height: 54px;
  background: #fef2f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.sub-service-card:hover .sub-service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.sub-service-card:hover .sub-service-icon svg {
    transform: rotateY(-180deg);
}

.sub-service-card h4 {
  font-family: "Crimson Pro", serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.sub-service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
    .notice-tabs-wrapper {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
        border-radius: 12px;
        align-items: stretch;
    }
    
    .notice-tab-btn {
        width: 100%;
        border-radius: 8px;
        text-align: left;
        padding-left: 1rem;
    }
    
    .notice-tab-btn.active {
        padding-left: 1.5rem;
    }

    .sub-service-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Pricing Section Redesign --- */
.pricing-section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing-header-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-color: rgba(153, 27, 27, 0.1);
}

.price-card.popular {
    border: 2px solid var(--primary);
    background: #fffafa;
}

.popular-badge {
    position: absolute;
    top: -12px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(153, 27, 27, 0.2);
}

.price-icon {
    width: 64px;
    height: 64px;
    background: #fee2e2;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.price-card.popular .price-icon {
    background: var(--primary);
    color: white;
}

.price-icon svg {
    width: 32px;
    height: 32px;
}

.price-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.price-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Info Grid (Factors & Tips) */
.info-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .info-block-grid {
        grid-template-columns: 1fr;
    }
}

.info-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-icon-box.blue {
    background: #ecfeff;
    color: #0891b2;
}

.info-icon-box.orange {
    background: #fff7ed;
    color: #ea580c;
}

.info-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    color: #475569;
}

.modern-list li:last-child {
    margin-bottom: 0;
}

.list-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

