/* ============================================
   ULTRANECTAR CSS - MONOCHROME SOPHISTICATED
   Design Style: Sophisticated monochrome design
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

strong {
  font-weight: 700;
  color: #000000;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: #000000;
  color: #ffffff;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f5f5;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #e0e0e0;
  border-left-color: #000000;
  transform: translateX(4px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #000000;
  border-bottom-color: #000000;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 8px;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  margin-bottom: 0;
  border-bottom: 4px solid #000000;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #2a2a2a;
  font-weight: 400;
}

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

.trust-indicator {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
   PAGE HERO (SUBPAGES)
   ============================================ */

.page-hero {
  background: #f5f5f5;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
}

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #1a1a1a;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */

.value-proposition {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.value-proposition h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.benefit-card p {
  color: #4a4a4a;
  font-size: 16px;
}

@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefit-card {
    max-width: 100%;
  }
}

/* ============================================
   SERVICES OVERVIEW & GRID
   ============================================ */

.services-overview {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.services-overview h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.services-overview > p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 40px 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card {
    max-width: 100%;
  }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail {
  padding: 40px 20px;
}

.service-card-detailed {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 40px;
}

.service-card-detailed h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card-detailed .price {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.service-card-detailed .duration {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-card-detailed h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-card-detailed ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card-detailed ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2a2a2a;
  line-height: 1.6;
}

.service-card-detailed ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
}

.service-card-detailed .btn-primary {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .service-card-detailed {
    padding: 32px 24px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  margin-bottom: 48px;
}

.testimonials-grid,
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px 28px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
  border-radius: 4px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  font-style: normal;
  text-align: right;
}

.testimonial-card .rating {
  font-size: 18px;
  color: #000000;
  display: block;
  margin-top: 8px;
  text-align: right;
}

@media (max-width: 768px) {
  .testimonials-grid,
  .testimonials-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat,
.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.stat:hover,
.stat-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat .number,
.stat-card .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat .label,
.stat-card .stat-label {
  display: block;
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat,
  .stat-card {
    max-width: 100%;
  }
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-banner,
.cta-section {
  background: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-banner h2,
.cta-section h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-banner h2,
  .cta-section h2 {
    font-size: 32px;
  }
}

/* ============================================
   MISSION, VALUES, PHILOSOPHY SECTIONS
   ============================================ */

.mission,
.values,
.philosophy,
.expertise,
.achievements {
  padding: 60px 20px;
  background: #ffffff;
}

.mission h2,
.values h2,
.philosophy h2,
.expertise h2,
.achievements h2 {
  font-size: 36px;
  margin-bottom: 24px;
  text-align: center;
}

.mission p,
.philosophy p,
.expertise p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #2a2a2a;
  text-align: center;
}

.mission h3,
.philosophy h3 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: center;
}

.values-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card,
.principle-card {
  flex: 1 1 260px;
  max-width: 280px;
  padding: 32px 24px;
  background: #f5f5f5;
  border-top: 4px solid #000000;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover,
.principle-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.value-card h3,
.principle-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000000;
}

.value-card p,
.principle-card p {
  color: #4a4a4a;
  font-size: 16px;
}

.expertise-list,
.achievements-list,
.techniques-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
}

.expertise-list li,
.achievements-list li,
.techniques-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.expertise-list li:before,
.achievements-list li:before,
.techniques-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
}

@media (max-width: 768px) {
  .values-grid,
  .principles-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .value-card,
  .principle-card {
    max-width: 100%;
  }
}

/* ============================================
   METHODOLOGY & PHASES
   ============================================ */

.methodology,
.techniques {
  padding: 60px 20px;
  background: #f5f5f5;
}

.methodology h2,
.techniques h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.phases-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phase-item {
  padding: 32px 28px;
  background: #ffffff;
  border-left: 4px solid #000000;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.phase-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.phase-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000000;
}

.phase-item p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   SUCCESS STORIES & FEATURED STORY
   ============================================ */

.impact-stats {
  padding: 60px 20px;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.impact-stats h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 48px;
}

.impact-stats .stats-grid {
  gap: 32px;
}

.impact-stats .stat-card {
  background: #1a1a1a;
  border-color: #4a4a4a;
  color: #ffffff;
}

.impact-stats .stat-card:hover {
  border-color: #ffffff;
  background: #2a2a2a;
}

.impact-stats .stat-number {
  color: #ffffff;
}

.impact-stats .stat-label {
  color: #e0e0e0;
}

.featured-story {
  padding: 60px 20px;
  background: #f5f5f5;
}

.story-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 4px;
}

.story-card .category {
  display: inline-block;
  padding: 8px 16px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border-radius: 2px;
}

.story-card h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.story-card .client-info {
  font-size: 16px;
  color: #6a6a6a;
  font-weight: 600;
  margin-bottom: 32px;
}

.story-card p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
}

.story-card blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .story-card {
    padding: 32px 24px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.services-intro,
.contact-options,
.location,
.office-hours {
  padding: 60px 20px;
}

.services-intro {
  background: #f5f5f5;
  text-align: center;
}

.services-intro h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.services-intro p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}

.contact-options h2,
.location h2,
.office-hours h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.options-grid,
.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.option-card,
.hours-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover,
.hours-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.option-card h3,
.hours-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.option-card p,
.hours-card p {
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 12px;
}

.option-card strong,
.hours-card strong {
  color: #000000;
  font-size: 18px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #f5f5f5;
  border-radius: 4px;
  border-left: 4px solid #000000;
}

.location-info h3 {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
}

@media (max-width: 768px) {
  .options-grid,
  .hours-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .option-card,
  .hours-card {
    max-width: 100%;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.contact-form-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
}

.form-wrapper p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 24px;
  text-align: center;
}

.form-note {
  padding: 32px 28px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
  border-radius: 4px;
}

.form-note p {
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 16px;
  text-align: left;
}

.form-note ul {
  list-style: none;
  margin: 16px 0 24px 0;
}

.form-note ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2a2a2a;
}

.form-note ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-page {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 4px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

.next-steps,
.confirmation-details,
.while-waiting,
.contact-info,
.contact-reminder,
.trust-mini {
  padding: 60px 20px;
}

.next-steps {
  background: #ffffff;
}

.next-steps h2,
.confirmation-details h2,
.while-waiting h2,
.contact-info h2,
.contact-reminder h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px 24px;
  background: #f5f5f5;
  border-top: 4px solid #000000;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover,
.suggestion-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-card h3,
.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p,
.suggestion-card p {
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 16px;
}

.confirmation-details {
  background: #f5f5f5;
}

.details-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.details-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.details-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
}

.urgent-note {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

.urgent-note strong {
  color: #ffffff;
}

.while-waiting {
  background: #ffffff;
}

.contact-info,
.contact-reminder {
  background: #f5f5f5;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 28px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
}

.contact-details p {
  font-size: 18px;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.trust-mini {
  background: #000000;
  color: #ffffff;
  padding: 40px 20px;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.mini-stats span {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .thank-you-content h1 {
    font-size: 32px;
  }
  
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .step-card,
  .suggestion-card {
    max-width: 100%;
  }
  
  .mini-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 40px 20px 60px;
  background: #ffffff;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 40px;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin: 16px 0;
}

.legal-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #2a2a2a;
  line-height: 1.6;
}

.legal-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 24px;
  margin-top: 0;
}

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

.footer-section {
  flex: 1 1 260px;
  max-width: 350px;
}

.footer-section h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-section p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #808080;
  padding-top: 24px;
  border-top: 1px solid #3a3a3a;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 0;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.cookie-btn-accept:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

.cookie-btn-reject {
  background: transparent;
  color: #e0e0e0;
  border: 2px solid #6a6a6a;
}

.cookie-btn-reject:hover {
  background: #2a2a2a;
  border-color: #8a8a8a;
}

.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #b0b0b0;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.cookie-modal-header {
  padding: 24px 28px;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: #e0e0e0;
  color: #1a1a1a;
  font-size: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #000000;
  color: #ffffff;
}

.cookie-modal-body {
  padding: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #b0b0b0;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #000000;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 24px 28px;
  border-top: 2px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
  padding: 12px 28px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  section {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  section {
    margin-bottom: 40px;
    padding: 24px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}