/* ================================
   BRIGHT CRYPT DESIGN - VINTAGE RETRO STYLE
   Complete CSS Stylesheet
   ================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #3d2817;
  background: #f9f4e8;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2c1810;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 0px #d4a574;
}

h2 {
  font-size: 36px;
  color: #8b4513;
  border-bottom: 3px solid #d4a574;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 28px;
  color: #5d3a1a;
}

h4 {
  font-size: 22px;
  color: #6b4423;
}

p {
  margin-bottom: 16px;
  color: #4a3728;
}

a {
  color: #8b4513;
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: #d4a574;
  text-decoration: none;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4a3728;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER STYLES */
header {
  background: linear-gradient(180deg, #2c1810 0%, #3d2817 100%);
  padding: 20px 0;
  border-bottom: 4px solid #d4a574;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(50%) hue-rotate(15deg) brightness(1.2);
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f9f4e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.main-nav a:hover {
  color: #d4a574;
  border-color: #d4a574;
  background: rgba(212, 165, 116, 0.1);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: #8b4513;
  border: 3px solid #d4a574;
  color: #f9f4e8;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #a0522d;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2c1810 0%, #3d2817 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 5px solid #d4a574;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #d4a574;
  color: #f9f4e8;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #d4a574;
  color: #2c1810;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 4px;
}

.mobile-nav a {
  color: #f9f4e8;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.mobile-nav a:hover {
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  padding-left: 30px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #d4a574 0%, #8b4513 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px solid #2c1810;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f9f4e8;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #f9f4e8;
  margin-bottom: 32px;
  line-height: 1.6;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-indicators span {
  color: #f9f4e8;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  background: rgba(44, 24, 16, 0.5);
  border: 2px solid #d4a574;
  border-radius: 20px;
  font-family: 'Georgia', serif;
}

.trust-badge {
  font-weight: 700;
  color: #d4a574;
  font-size: 18px;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px dashed #8b4513;
  border-radius: 8px;
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: #8b4513;
  color: #f9f4e8;
  border-color: #2c1810;
}

.btn-primary:hover {
  background: #a0522d;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #f9f4e8;
  border-color: #f9f4e8;
}

.btn-secondary:hover {
  background: #f9f4e8;
  color: #8b4513;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section:nth-child(even) {
  background: #fff8e7;
  border-top: 3px solid #d4a574;
  border-bottom: 3px solid #d4a574;
}

/* CARDS & GRIDS */
.benefits-grid,
.services-grid,
.packages-grid,
.projects-grid,
.testimonials-grid,
.stats-grid,
.team-grid,
.principles-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.package-card,
.project-card,
.testimonial-card,
.stat-card,
.team-member,
.principle,
.method-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 28px;
  background: #fff;
  border: 3px solid #8b4513;
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card::before,
.service-card::before,
.package-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed #d4a574;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefit-card:hover::before,
.service-card:hover::before,
.package-card:hover::before {
  opacity: 1;
}

.benefit-card:hover,
.service-card:hover,
.package-card:hover,
.project-card:hover,
.team-member:hover,
.principle:hover,
.method-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.3);
}

.benefit-card h3,
.service-card h3,
.package-card h3,
.project-card h3,
.team-member h3,
.principle h3,
.method-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-weight: 700;
  color: #d4a574;
  font-size: 20px;
  margin-top: 16px;
  display: block;
  font-family: 'Georgia', serif;
}

.discount {
  background: #8b4513;
  color: #f9f4e8;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
  border: 2px solid #2c1810;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff8e7;
  border: 3px solid #d4a574;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote,
.quote-large {
  font-style: italic;
  color: #3d2817;
  font-size: 18px;
  line-height: 1.7;
  font-family: 'Georgia', serif;
  margin-bottom: 16px;
}

.quote-large {
  font-size: 24px;
  text-align: center;
}

.author,
.client-name {
  font-weight: 700;
  color: #8b4513;
  font-size: 16px;
}

.rating {
  color: #d4a574;
  font-size: 24px;
  letter-spacing: 4px;
}

.testimonial-featured {
  background: linear-gradient(135deg, #fff8e7 0%, #f9f4e8 100%);
  padding: 60px 40px;
  border: 4px solid #8b4513;
  border-radius: 12px;
  text-align: center;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.2);
  margin-top: 40px;
}

/* STATS */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #d4a574 0%, #8b4513 100%);
  color: #f9f4e8;
  padding: 40px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  border: 3px solid #2c1810;
}

.stat-card .number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-card p {
  color: #f9f4e8;
  font-size: 16px;
  font-weight: 600;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.step,
.step-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  background: #fff;
  border: 3px solid #d4a574;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(212, 165, 116, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.step-number,
.number {
  font-size: 32px;
  font-weight: 700;
  color: #8b4513;
  background: #d4a574;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #2c1810;
  font-family: 'Georgia', serif;
}

.step h3,
.step-detail h2 {
  color: #8b4513;
  margin-bottom: 12px;
}

.duration {
  color: #d4a574;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
}

/* SERVICE DETAILS */
.service-detail {
  background: #fff8e7;
  padding: 32px;
  border: 3px solid #8b4513;
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
}

.service-detail h3 {
  color: #8b4513;
  margin-bottom: 16px;
  font-size: 28px;
  border-bottom: 2px solid #d4a574;
  padding-bottom: 8px;
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
}

.service-detail li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4a574;
  font-weight: 700;
  font-size: 18px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #2c1810 0%, #1a0f08 100%);
  color: #f9f4e8;
  padding: 60px 20px 20px;
  border-top: 5px solid #d4a574;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: sepia(50%) hue-rotate(15deg) brightness(1.2);
}

.tagline {
  color: #d4a574;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: #d4a574;
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4a574;
  padding-bottom: 8px;
}

footer p {
  color: #f9f4e8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #f9f4e8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #d4a574;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.footer-bottom p {
  color: #d4a574;
  font-size: 14px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: #fff;
  padding: 28px;
  border: 3px solid #d4a574;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(212, 165, 116, 0.2);
}

.faq-item h3 {
  color: #8b4513;
  margin-bottom: 12px;
  font-size: 20px;
}

/* CONTACT INFO */
.contact-detail {
  color: #8b4513;
  font-weight: 700;
  font-size: 18px;
  margin: 12px 0;
}

.contact-info {
  text-align: center;
  font-size: 16px;
  color: #f9f4e8;
  margin-top: 24px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #fff;
  padding: 60px 20px;
}

.legal-content h2 {
  color: #8b4513;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.hero.thank-you {
  padding: 100px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #f9f4e8;
  border: 5px solid #8b4513;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #8b4513;
  margin: 0 auto 32px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #fff;
  border: 3px solid #d4a574;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  color: #8b4513;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(212, 165, 116, 0.3);
}

.suggestion-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(212, 165, 116, 0.3);
  background: #fff8e7;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #8b4513 0%, #d4a574 100%) !important;
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #2c1810;
  border-bottom: 5px solid #2c1810;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
  color: #f9f4e8;
  margin-bottom: 24px;
  border-bottom: none;
}

.cta-section p {
  color: #f9f4e8;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee,
.urgency {
  color: #f9f4e8;
  font-style: italic;
  margin-top: 20px;
  font-size: 16px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

/* SUPPORTING TEXT */
.supporting-text {
  text-align: center;
  font-size: 18px;
  color: #8b4513;
  font-style: italic;
  margin-top: 32px;
  font-family: 'Georgia', serif;
}

.link {
  color: #8b4513;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  border: 2px solid #8b4513;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.link:hover {
  background: #8b4513;
  color: #f9f4e8;
  transform: translateX(5px);
}

/* ROLE & PROJECT INFO */
.role,
.service,
.project-info,
.project-meta {
  color: #d4a574;
  font-style: italic;
  font-size: 14px;
  margin-top: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .benefit-card,
  .service-card,
  .package-card,
  .project-card,
  .testimonial-card,
  .stat-card,
  .team-member,
  .principle,
  .method-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step,
  .step-detail {
    flex-direction: column;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .step-number,
  .number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* SMOOTH TRANSITIONS */
.benefit-card,
.service-card,
.package-card,
.project-card,
.testimonial-card,
.team-member,
.principle,
.method-card,
.btn,
.link {
  transition: all 0.3s ease;
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #d4a574;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: none;
    border: none;
  }
}