/* Anti-Cloning Protection - Import design system protection */
@import url('/css/components/anti-clone.css');

/* Additional Protection for Landing Page */
.design-system-protected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Allow selection in form inputs and text areas */
.design-system-protected input,
.design-system-protected textarea,
.design-system-protected select,
.design-system-protected [contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image dragging */
.design-system-protected img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto; /* Allow clicks on images */
}

/* Prevent context menu */
.design-system-protected {
  -webkit-touch-callout: none;
}

/* Prevent print */
@media print {
  .design-system-protected {
    display: none !important;
  }
}

/* Base Styles */
.modal-content-custom {
  background-color: var(--card-body-bg);
  color: var(--card-body-text);
  padding: 20px;
  border: 1px solid #888;
  border-radius: 5px;
  text-align: center;
}

.modal-header-custom {
  border: none;
  background-color: var(--card-header-bg);
  color: var(--card-header-text);
  padding: 1rem;
}

.modal-body-custom {
  padding: 1.5rem;
}

.btn-close {
  filter: invert(100%);
}

@media (max-width: 576px) {
  .card {
    margin: 10px auto;
  }
  #calendar {
    height: auto;
  }
  .modal-dialog {
    max-width: 95%;
  }
  .modal-content-custom {
    padding: 15px;
  }
}

body {
  background-color: #000;
  color: #fff;
}

.main-section {
  padding: 80px 0;
}

.page-header {
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #fff;
}

/* Hero Section - Optimized */
.hero-section {
  margin-bottom: 60px;
}

.hero-description {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-description::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hero-cta .btn-modern {
  min-width: 200px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta .btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Trust Signals */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
  font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 60px;
}

.benefits-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

.benefit-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.benefit-icon i {
  font-size: 2rem;
  color: #ffd700;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
}

.faq-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

.accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.05);
  --bs-accordion-border-color: rgba(255, 255, 255, 0.2);
  --bs-accordion-color: #fff;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
}

.accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.accordion-body {
  color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  margin-bottom: 60px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cta-box .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn-modern {
  min-width: 200px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Services Cards */
.card {
  background: #111;
  border: none;
  box-shadow: 0 0 10px #fff;
  margin-bottom: 30px;
}

.card h3 {
  text-shadow: 0 0 5px #fff;
}

.card h3,
.card p {
  color: #fff;
}

.btn-primary,
.btn-success {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 0 10px #fff;
  transition: background 0.3s, color 0.3s;
}

.btn-primary:hover,
.btn-success:hover {
  background: #fff;
  color: #000;
}

footer,
nav {
  background: transparent;
}

/* Fade-in Animation */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    padding: 30px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-modern {
    width: 100%;
    min-width: auto;
  }
  
  .trust-signals {
    flex-direction: column;
    gap: 15px;
  }
  
  .benefits-section h2,
  .faq-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-box {
    padding: 30px 20px !important;
  }
  
  .cta-box h2 {
    font-size: 1.75rem;
  }
  
  .cta-box .btn-modern {
    width: 100%;
    margin-bottom: 10px;
    min-width: auto;
  }
}

/* Light theme overrides */
.theme-light body {
  background-color: var(--page-bg);
  color: var(--fg);
}

.theme-light .hero-description {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--glow);
}

.theme-light .hero-title,
.theme-light .hero-description h2 {
  color: var(--fg);
  text-shadow: none;
}

.theme-light .hero-subtitle,
.theme-light .hero-description p {
  color: var(--fg);
}

.theme-light .trust-item {
  color: var(--fg);
}

.theme-light .benefit-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

.theme-light .benefit-card h3 {
  color: var(--fg);
}

.theme-light .benefit-card p {
  color: var(--muted-text, rgba(0, 0, 0, 0.7));
}

.theme-light .accordion-item {
  background: var(--card-bg);
  border-color: var(--card-border);
}

.theme-light .accordion-button {
  color: var(--fg);
}

.theme-light .accordion-body {
  color: var(--fg);
}

.theme-light .cta-box {
  background: var(--card-bg);
  border-color: var(--card-border);
}

.theme-light .cta-box h2 {
  color: var(--fg);
  text-shadow: none;
}

.theme-light .cta-box .lead {
  color: var(--fg);
}

.theme-light .card {
  background: var(--card-bg);
  box-shadow: var(--glow);
}

.theme-light .card h3,
.theme-light .card p {
  color: var(--fg);
  text-shadow: none;
}

.theme-light .btn-primary,
.theme-light .btn-success {
  background: var(--btn-accent-bg);
  border: 2px solid var(--btn-accent-bg);
  color: var(--btn-accent-text);
  box-shadow: 0 10px 28px rgba(255, 215, 0, 0.28);
}

.theme-light .btn-primary:hover,
.theme-light .btn-success:hover {
  background: var(--btn-accent-bg);
  filter: brightness(1.05);
}

.theme-light footer,
.theme-light nav {
  background: transparent;
}

.theme-light .btn-close {
  filter: none;
}
