* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #000;
}

.pdf4-buddha-hills-section {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a2e 25%,
    #16213e 50%,
    #0f3460 75%,
    #533483 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.pdf4-buddha-hills-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 64, 129, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(27, 109, 193, 0.2) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}


.pdf4-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticles 8s linear infinite;
  backdrop-filter: blur(2px);
}

.pdf4-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  animation-delay: 0s;
}
.pdf4-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 20%;
  animation-delay: 2s;
}
.pdf4-particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 30%;
  animation-delay: 4s;
}
.pdf4-particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 70%;
  animation-delay: 1s;
}
.pdf4-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 80%;
  animation-delay: 3s;
}
.pdf4-particle:nth-child(6) {
  width: 7px;
  height: 7px;
  left: 90%;
  animation-delay: 5s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.pdf4-buddha-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  height: 100%;
  align-items: center;
}

.pdf4-buddha-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  position: relative;
}

.pdf4-label {
  background: linear-gradient(45deg, #ff4081, #e91e63, #c2185b);
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.pdf4-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.pdf4-main-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pdf4-main-title span {
  background: linear-gradient(45deg, #ff4081, #e91e63, #f06292, #ff80ab);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.8));
  }
}

.pdf4-sub-title {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.pdf4-buddha-img {
  width: 400px;
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.pdf4-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pdf4-badge {
  height: 60px;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.pdf4-badge:hover {
  transform: scale(1.1);
  filter: brightness(1.4) contrast(1.2);
}

.pdf4-lp-number {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.pdf4-buddha-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

.pdf4-highlight-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pdf4-highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: all 0.5s ease;
}

.pdf4-highlight-box:hover::before {
  left: 100%;
}

.pdf4-highlight-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pdf4-highlight-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf4-highlight-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff4081, #e91e63);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.pdf4-highlight-box ul {
  list-style-type: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.pdf4-highlight-box li {
  padding: 8px 0;
  position: relative;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

.pdf4-highlight-box li:hover {
  color: #fff;
  transform: translateX(5px);
}

.pdf4-highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #ff4081, #e91e63);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.pdf4-price-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, #ff4081 0%, #e91e63 50%, #c2185b 100%);
  color: #fff;
  padding: 2rem 2rem;
  font-weight: 800;
  font-size: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  top: 23%;
  right: 16%;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}

.pdf4-price-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.pdf4-price-badge:hover::before {
  transform: translateX(100%);
}

.pdf4-price-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 60px rgba(233, 30, 99, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.pdf4-price-badge span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf4-villa-image {
  position: absolute;
  bottom: -100px;
  width: 600px;
  top: 10%;
  z-index: 1;
  opacity: 0.7;
}

.pdf4-villa-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.6s ease;
}

.pdf4-villa-image:hover img {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.02);
  filter: brightness(1) contrast(1.2);
  opacity: 1;
}

@media (max-width: 1024px) {
  .pdf4-buddha-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1rem;
    text-align: center;
  }

  .pdf4-buddha-left {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .pdf4-highlight-box {
    text-align: left;
  }

  .pdf4-buddha-right {
    order: 2;
    position: relative;
  }

  .pdf4-villa-image {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    opacity: 1;
  }

  .pdf4-villa-image img {
    transform: none;
  }

  .pdf4-price-badge {
    position: relative;
    top: auto;
    right: auto;
    align-self: center;
    margin: 2rem 0;
  }

  .pdf4-buddha-img {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .pdf4-layout-grid {
    flex-direction: column;
  }
  
  .pdf4-layout-left,
  .pdf4-layout-right {
    flex: 1 1 100%;
  }
  
  .pdf4-full-map {
    transform: none !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .pdf4-buddha-hills-section {
    padding: 2rem 0;
  }

  .pdf4-buddha-container {
    padding: 1rem;
    gap: 2rem;
  }

  .pdf4-highlight-box {
    padding: 1.5rem;
  }

  .pdf4-price-badge {
    padding: 1.5rem 2rem;
  }

  .pdf4-badge-row {
    justify-content: center;
  }

  .pdf4-badge {
    height: 50px;
  }

  .pdf4-layout-grid {
    gap: 1.5rem;
  }
  
  .pdf4-layout-left {
    gap: 2rem;
  }
  
  .pdf4-surroundings {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .pdf4-buddha-hills-section {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .pdf4-label {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .pdf4-highlight-box {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .pdf4-highlight-box li {
    padding: 6px 0;
    padding-left: 1.5rem;
  }

  .pdf4-highlight-box li::before {
    width: 8px;
    height: 8px;
  }

  .pdf4-price-badge {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
  }
  
  .pdf4-villa-image {
    max-width: 400px;
  }
  
  .pdf4-surroundings {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .pdf4-surroundings div {
    padding: 8px;
  }
  
  .pdf4-surroundings img {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .pdf4-buddha-container {
    padding: 0.75rem;
    gap: 1.5rem;
  }

  .pdf4-sub-title {
    margin-bottom: 2rem;
  }

  .pdf4-highlight-box {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .pdf4-price-badge {
    padding: 1rem 1.25rem;
    margin: 1rem 0;
  }

  .pdf4-badge-row {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  .pdf4-lp-number {
    padding: 6px 12px;
    text-align: center;
  }
  
  .pdf4-villa-image {
    max-width: 320px;
    margin: 1rem auto;
  }
  
  .pdf4-buddha-layout-section {
    padding: 2rem 0.5rem;
  }
  
  .pdf4-layout-grid {
    gap: 1rem;
  }
  
  .pdf4-layout-left {
    gap: 1.5rem;
  }
  
  .pdf4-surroundings {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}


@media (max-width: 360px) {
  .pdf4-buddha-container {
    padding: 0.5rem;
  }
  
  .pdf4-highlight-box {
    padding: 0.75rem;
  }
  
  .pdf4-highlight-box li {
    padding-left: 1.25rem;
  }
  
  .pdf4-price-badge {
    padding: 0.75rem 1rem;
  }
  
  .pdf4-villa-image {
    max-width: 280px;
  }
  
  .pdf4-surroundings div {
    padding: 6px;
  }
}

.pdf4-buddha-layout-section {
  background: #eaf5ff;
  padding: 4rem 1rem;
}

.pdf4-layout-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  gap: 2rem;
}

.pdf4-layout-left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10rem;
  min-width: 300px;
}

.pdf4-top-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #002b6e;
  line-height: 1.6;
}

.pdf4-hmda-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.pdf4-hmda-badge img {
  height: 40px;
}

.pdf4-hmda-badge p {
  font-size: 0.8rem;
  color: #004199;
  background: #dff1ff;
  padding: 5px 10px;
  border-radius: 5px;
}

.pdf4-full-map {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  transform: rotate(90deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pdf4-layout-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.pdf4-route-map {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pdf4-site-label h2 {
  font-size: 1.5rem;
  color: #e91e63;
  font-weight: 800;
  text-align: center;
}

.pdf4-site-label h2 span {
  color: #002b6e;
}

.pdf4-location-desc {
  text-align: center;
  font-size: 0.9rem;
  color: #444;
}

.pdf4-surroundings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.pdf4-surroundings div {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.pdf4-surroundings img {
  width: 100%;
  max-height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.pdf4-surroundings p {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}
