/* Landing Page Demo Stylesheet - The Dental Project Invisalign Landing Page */

:root {
  --dp-blue-primary: #5E5EEE;
  --dp-blue-dark: #0B0B38;
  --dp-blue-navy: #0B0B38;
  --dp-blue-light: #F8F8FF;
  --dp-blue-soft: #F0F0FF;
  --dp-accent-blue: #5E5EEE;
  --dp-accent-hover: #4b4bee;
  --dp-text-dark: #0B0B38;
  --dp-text-muted: #555574;
  --dp-card-shadow: 0 10px 30px rgba(94, 94, 238, 0.08);
  --dp-card-shadow-hover: 0 20px 40px rgba(94, 94, 238, 0.18);
  --dp-border-radius: 16px;
  
  /* Standard Site Color Variables */
  --primary-color: #0B0B38;
  --secondary-color: #F8F8FF;
  --text-color: #555574;
  --accent-color: #5E5EEE;
  --white-color: #FFFFFF;
  --divider-color: #F0F0FF;
}

/* Base Adjustments */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--dp-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.text-dp-blue {
  color: var(--dp-blue-primary) !important;
}

.text-dp-teal {
  color: var(--dp-blue-primary) !important;
}

.bg-dp-light {
  background-color: var(--dp-blue-light) !important;
}

.bg-dp-teal-light {
  background-color: var(--dp-blue-soft) !important;
}

/* Custom Buttons - Dental Project Blue Gradient */
.btn-dp-primary {
  background: linear-gradient(135deg, #5E5EEE 0%, #0B0B38 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(94, 94, 238, 0.3);
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
}

.btn-dp-primary:hover,
.btn-dp-primary:focus {
  background: linear-gradient(135deg, #0B0B38 0%, #00002b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(94, 94, 238, 0.45);
  color: #ffffff;
}

.btn-dp-blue {
  background: linear-gradient(135deg, #005691 0%, #0b0b38 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
}

.btn-dp-blue:hover,
.btn-dp-blue:focus {
  background: linear-gradient(135deg, #0b0b38 0%, #003853 100%);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Header & Sticky Header Integration for Landing Page & Site Pages */
header.main-header,
header.page-header1 {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background-color: #ffffff !important;
  transition: all 0.3s ease-in-out !important;
}

/* Sticky Header Active State (Triggered on Scroll > 150px) */
header.main-header.is-sticky,
header.page-header1.is-sticky,
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: linear-gradient(90deg, #18184c 0%, #0b0b38 100%) !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35) !important;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 1, 1) !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Text and Links inside Sticky Header */
header.main-header.is-sticky .main-menu ul li a,
header.page-header1.is-sticky .main-menu ul li a {
  color: #ffffff !important;
}

header.main-header.is-sticky .main-menu ul li a:hover,
header.page-header1.is-sticky .main-menu ul li a:hover {
  color: #debe5d !important;
}

header.main-header.is-sticky .contact-now-box-content p,
header.page-header1.is-sticky .contact-now-box-content p {
  color: #cbd5e1 !important;
}

header.main-header.is-sticky .contact-now-box-content h3 a,
header.page-header1.is-sticky .contact-now-box-content h3 a {
  color: #ffffff !important;
}

/* Dropdown Submenu Dark Background */
.main-menu ul ul {
  background-color: #12123a !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu ul ul li a {
  color: #ffffff !important;
}

.main-menu ul ul li a:hover {
  color: #debe5d !important;
}

/* SlickNav Mobile Menu Dark Background */
.slicknav_menu {
  background: #0B0B38 !important;
}

.slicknav_nav {
  background: #12123a !important;
}

.slicknav_nav a {
  color: #ffffff !important;
}

.slicknav_nav a:hover {
  color: #debe5d !important;
}

/* Footer inherits default site styles from custom.css */

/* Hero Section */
.hero-demo-section {
  padding: 40px 0 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef7fc 100%);
  position: relative;
}

.hero-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(14, 130, 197, 0.12);
  border: 1px solid rgba(14, 130, 197, 0.12);
}

.hero-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dp-text-dark);
  margin-bottom: 6px;
}

.hero-form-card h3 span {
  color: var(--dp-blue-primary);
}

.hero-form-card .form-subtitle {
  font-size: 14px;
  color: var(--dp-text-muted);
  margin-bottom: 20px;
}

.input-icon-group {
  position: relative;
  margin-bottom: 16px;
}

.input-icon-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #5e5eee;
  font-size: 15px;
  z-index: 4;
}

.input-icon-group .form-control,
.input-icon-group .form-select {
  padding-left: 44px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  color: var(--dp-text-dark);
  background-color: #f8fafc;
  transition: all 0.2s ease;
}

.input-icon-group .form-control:focus,
.input-icon-group .form-select:focus {
  border-color: #5e5eee;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(94, 94, 238, 0.15);
}

.form-confidential-tag {
  font-size: 12px;
  color: var(--dp-text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 20px;
}

.trust-badges-row {
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
  margin-top: 15px;
}

.trust-badge-item {
  text-align: center;
}

.trust-badge-item i {
  font-size: 18px;
  color: var(--dp-blue-primary);
  display: block;
  margin-bottom: 4px;
}

.trust-badge-item span {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  line-height: 1.2;
  display: block;
}

/* Hero Right Content */
.hero-title-main {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dp-text-dark);
  margin-bottom: 16px;
}

.hero-title-main span {
  color: var(--dp-blue-primary);
}

.hero-subtext {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-pill-item {
  background: #ffffff;
  border: 1px solid #bae6fd;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(14, 130, 197, 0.06);
}

.feature-pill-item i {
  color: var(--dp-blue-primary);
  font-size: 15px;
  background: var(--dp-blue-soft);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-pill-item span {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hero-image-wrapper img {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(14, 130, 197, 0.15);
}

.floating-handwriting-badge {
  position: absolute;
  bottom: 25px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(14, 130, 197, 0.15);
  border: 1px solid rgba(255,255,255,0.8);
  z-index: 5;
}

.floating-handwriting-badge p {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 22px;
  color: var(--dp-blue-primary);
  margin: 0;
  line-height: 1;
}

.floating-brand-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(14, 130, 197, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.floating-brand-badge img {
  height: 26px;
  width: auto;
}

.floating-brand-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--dp-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats Counter Section */
.stats-counter-bar {
  background: linear-gradient(135deg, #eef7fc 0%, #e0f2fe 100%);
  padding: 35px 0;
  border-top: 1px solid rgba(14,130,197,0.1);
  border-bottom: 1px solid rgba(14,130,197,0.1);
}

.stat-item-box {
  text-align: center;
  padding: 10px;
}

.stat-item-box h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dp-blue-primary);
  margin-bottom: 4px;
}

.stat-item-box p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

/* What is Invisalign Section */
.what-invisalign-section {
  padding: 80px 0;
}

.aligner-card-wrapper {
  position: relative;
}

.aligner-card-wrapper img {
  border-radius: 20px;
  box-shadow: var(--dp-card-shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.floating-circle-label {
  position: absolute;
  top: 25px;
  right: -15px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px dashed var(--dp-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--dp-blue-dark);
  line-height: 1.3;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(14, 130, 197, 0.12);
}

.section-heading-lg {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--dp-text-dark);
  margin-bottom: 16px;
}

.section-heading-lg span {
  color: var(--dp-blue-primary);
}

.check-feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px 0;
}

.check-feature-list li {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-feature-list li i {
  color: var(--dp-blue-primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* Why Choose Section */
.why-choose-section {
  background: #f8fafc;
  padding: 80px 0;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--dp-card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f5f9;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dp-card-shadow-hover);
}

.why-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--dp-blue-soft);
  color: var(--dp-blue-primary);
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
  background: linear-gradient(135deg, #0e82c5 0%, #005691 100%);
  color: #ffffff;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dp-text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--dp-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Process Journey Section */
.journey-section {
  padding: 80px 0;
}

.journey-step-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--dp-card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f5f9;
  position: relative;
}

.journey-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dp-card-shadow-hover);
}

.journey-step-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e82c5 0%, #005691 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(14, 130, 197, 0.4);
}

.journey-img-holder {
  height: 190px;
  overflow: hidden;
}

.journey-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journey-step-card:hover .journey-img-holder img {
  transform: scale(1.05);
}

.journey-card-body {
  padding: 22px 20px;
  text-align: center;
}

.journey-card-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dp-text-dark);
  margin-bottom: 8px;
}

.journey-card-body p {
  font-size: 13px;
  color: var(--dp-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Results & Testimonial Showcase */
.results-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
}

.before-after-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--dp-card-shadow);
  border: 1px solid #f1f5f9;
  height: 100%;
}

.before-after-card .transformation_image {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.before-after-card .transformation_image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.testimonial-quote-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--dp-card-shadow);
  border: 1px solid #edf2f7;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quote-icon-large {
  font-size: 45px;
  color: var(--dp-blue-primary);
  opacity: 0.3;
  margin-bottom: 15px;
}

.testimonial-quote-box blockquote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 20px;
}

.patient-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.patient-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dp-text-dark);
}

.patient-location {
  font-size: 12px;
  color: var(--dp-text-muted);
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 60px 0;
}

.cta-banner-inner {
  background: linear-gradient(135deg, #0b0b38 0%, #005691 60%, #0e82c5 100%);
  border-radius: 28px;
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 130, 197, 0.35) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-left .tagline-handwriting {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 26px;
  color: #7dd3fc;
  margin-bottom: 10px;
}

.cta-banner-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-banner-left p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 25px;
  max-width: 480px;
}

.cta-quick-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  color: var(--dp-text-dark);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-quick-form h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dp-text-dark);
  margin-bottom: 15px;
  text-align: center;
}

/* FAQ Accordion Section */
.faq-demo-section {
  padding: 80px 0;
}

.accordion-demo .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-demo .accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: var(--dp-text-dark);
  padding: 20px 24px;
  background: #ffffff;
  box-shadow: none;
}

.accordion-demo .accordion-button:not(.collapsed) {
  color: var(--dp-blue-primary);
  background-color: var(--dp-blue-light);
}

.accordion-demo .accordion-body {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  padding: 20px 24px;
  background: #ffffff;
}

.faq-image-side {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.faq-image-side img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.faq-floating-text {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 30px;
  color: var(--dp-blue-primary);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(14, 130, 197, 0.15);
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .hero-demo-section {
    padding: 30px 0 50px 0;
  }
  
  .hero-title-main {
    margin-top: 15px;
  }
  
  .hero-image-wrapper img {
    height: 340px;
  }
  
  .floating-circle-label {
    top: 15px;
    right: 10px;
    width: 90px;
    height: 90px;
    font-size: 11px;
  }

  .cta-banner-inner {
    padding: 35px 24px;
  }

  .faq-image-side img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .hero-form-card {
    padding: 22px 18px;
  }

  .feature-pill-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero-image-wrapper img {
    height: 280px;
  }

  .floating-handwriting-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
  }

  .floating-handwriting-badge p {
    font-size: 18px;
  }

  .floating-brand-badge {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
  }

  .floating-brand-badge .badge-text {
    font-size: 9px;
  }

  .stat-item-box h2 {
    font-size: 26px;
  }

  .stat-item-box p {
    font-size: 12px;
  }

  .what-invisalign-section,
  .why-choose-section,
  .journey-section,
  .results-section,
  .faq-demo-section {
    padding: 50px 0;
  }

  .cta-banner-section {
    padding: 35px 0;
  }

  .whatsapp-float-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .trust-badge-item span {
    font-size: 10px;
  }

  .why-card {
    padding: 25px 15px;
  }

  .testimonial-quote-box {
    padding: 25px 20px;
  }
}
