/* ========================================================
   LeaseKey Redesigned Minimal Privacy Policy Page Stylesheet
   Designed to blend seamlessly with the LeaseKey Premium Theme
   ======================================================== */

:root {
  --primary: #0091ff;
  --secondary: #ff006e;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --border-radius: 24px;
}

/* Premium Full-Width Banner Hero Section */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 420px; /* Compact elegant premium height */
  background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1600') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 100px 2rem 40px;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.78) 0%,
    rgba(26, 26, 26, 0.88) 100%
  );
  z-index: 1;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 145, 255, 0.15) 0%,
    rgba(255, 0, 110, 0.1) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1.5;
  pointer-events: none;
}

/* Floating Brand Light Blobs inside the Hero Banner */
.privacy-hero .hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1.2;
  opacity: 0.18;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.privacy-hero .blob-1 {
  width: 250px;
  height: 250px;
  background: var(--primary);
  top: -50px;
  left: 15%;
}

.privacy-hero .blob-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -100px;
  right: 15%;
  animation-delay: -6s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.15);
  }
}

.privacy-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.privacy-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.privacy-title span {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.privacy-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-breadcrumbs a:hover {
  color: #ffffff;
}

.privacy-breadcrumbs span {
  color: rgba(255, 255, 255, 0.3);
}

/* Privacy Main Section Layout */
.privacy-section {
  padding: 80px 0;
  background: #fcfcfd;
}

.privacy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Privacy Centered Content Card */
.privacy-content-card {
  background: var(--white);
  padding: 5rem 4.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 145, 255, 0.04);
  border: 1px solid rgba(0, 145, 255, 0.08);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.privacy-content-card section {
  margin-bottom: 3.5rem;
}

.privacy-content-card section:last-child {
  margin-bottom: 0;
}

.section-anchor-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1.2rem;
  letter-spacing: -0.5px;
}

.section-anchor-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 4px;
}

.privacy-content-card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.5rem;
}

.privacy-content-card ul, 
.privacy-content-card ol {
  margin: 1.5rem 0;
  padding-left: 1.8rem;
}

.privacy-content-card li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 0.8rem;
}

.privacy-content-card strong {
  color: var(--text-dark);
}

/* Premium Custom Bullet Design */
.privacy-content-card ul li {
  position: relative;
  list-style: none;
  padding-left: 0.5rem;
}

.privacy-content-card ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Glassmorphism callouts */
.pp-callout {
  background: linear-gradient(135deg, rgba(0, 145, 255, 0.02), rgba(255, 0, 110, 0.02));
  border: 1px solid rgba(0, 145, 255, 0.08);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.pp-callout h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.pp-callout p {
  margin-bottom: 0;
}

/* Contact CTA Block */
.privacy-cta {
  background: linear-gradient(135deg, rgba(0, 145, 255, 0.06), rgba(255, 0, 110, 0.06));
  border: 2px solid rgba(0, 145, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.privacy-cta::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 145, 255, 0.15) 0%, rgba(255, 0, 110, 0) 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 145, 255, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-info-text {
  text-align: left;
}

.cta-info-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-info-text a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-info-text a:hover {
  color: var(--primary);
}

.privacy-cta .btn-primary {
  padding: 1.1rem 3.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(0, 145, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.privacy-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 145, 255, 0.35);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness */
@media (max-width: 992px) {
  .privacy-content-card {
    padding: 4rem 3rem;
  }
}

@media (max-width: 768px) {
  .privacy-hero {
    height: 320px;
    padding: 80px 1.5rem 20px;
  }
  .privacy-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
  .privacy-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .privacy-content-card {
    padding: 2.5rem 1.5rem;
  }
  .section-anchor-title {
    font-size: 1.1rem;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-info-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .cta-info-item {
    width: 100%;
    justify-content: center;
  }
  .privacy-cta {
    padding: 3rem 1.5rem;
  }
  .privacy-content-card section {
  margin-bottom: 0.5rem;
}
}
