
:root {
  --color-primary: #0A1128;
  --color-secondary: #7209B7;
  --color-accent: #00F0FF;
  --color-highlight: #FF00A0;
  --color-bg-dark: #050914;
  --color-bg-light: #0F1E3D;
  --color-text-light: #EAEAEA;
  --color-text-dark: #0A1128;
  --color-shadow: rgba(0, 240, 255, 0.3);
  --font-heading: 'Crimson Text', serif;
  --font-body: 'Lato', sans-serif;
  --shadow-neon: 0 0 10px var(--color-accent), 0 0 20px rgba(0, 240, 255, 0.3);
  --shadow-glow: 0 0 15px rgba(114, 9, 183, 0.6);
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --border-radius: 4px;
  --card-radius: 8px;
}


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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

header nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.75rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover, a:focus {
  color: var(--color-highlight);
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.accent-text {
  color: var(--color-accent);
}

.highlight-text {
  color: var(--color-highlight);
}


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

.section {
  padding: 5rem 0;
  position: relative;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}

.col-2 {
  flex: 0 0 50%;
  padding: 0 1rem;
}

.col-3 {
  flex: 0 0 33.333333%;
  padding: 0 1rem;
}

.col-4 {
  flex: 0 0 25%;
  padding: 0 1rem;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-medium);
}

.btn:hover:before {
  left: 100%;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: 0 0 10px var(--color-accent);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: 0 0 10px var(--color-secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px var(--color-secondary);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: 0 0 15px var(--color-accent);
}

.btn-group {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-fast);
  background-color: rgba(5, 9, 20, 0.8);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 1rem 0;
  background-color: rgba(10, 17, 40, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img, .logo svg {
  height: 40px;
  width: auto;
  transition: var(--transition-fast);
}

header.scrolled .logo img, 
header.scrolled .logo svg {
  height: 35px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
  position: relative;
}

nav ul li a {
  color: var(--color-text-light);
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  transition: var(--transition-fast);
}

nav ul li a:hover:before,
nav ul li a:focus:before,
nav ul li a.active:before {
  width: 100%;
}

nav ul li a:hover, 
nav ul li a:focus,
nav ul li a.active {
  color: var(--color-accent);
}

.header-cta {
  margin-left: 2rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--color-bg-light);
    padding: 5rem 2rem 2rem;
    transition: var(--transition-fast);
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 2rem;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
  }
  
  .overlay.open {
    display: block;
  }
}


.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-bg-dark) 5%, transparent 50%, var(--color-bg-dark) 95%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-contact i {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn-group {
    flex-direction: column;
  }
  
  .hero-btn-group .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}


.card {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114, 9, 183, 0.2);
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(0deg, var(--color-accent), var(--color-highlight));
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--color-shadow);
  border-color: rgba(114, 9, 183, 0.3);
}

.card-title {
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
}

.feature-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--color-shadow);
}

.feature-card:hover .card-icon {
  box-shadow: 0 0 30px var(--color-shadow);
  transform: scale(1.1);
}


.step-process {
  position: relative;
  margin: 4rem 0;
}

.step-process:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50px / 2);
  width: 2px;
  background: linear-gradient(0deg, var(--color-accent), var(--color-highlight));
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 2rem;
  box-shadow: 0 0 20px var(--color-shadow);
  z-index: 2;
}

.step-content {
  flex: 1;
}

@media (max-width: 768px) {
  .step-process:before {
    left: 25px;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .step-content {
    padding-left: 50px;
  }
}


.metrics-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 3rem 0;
}

.metric-item {
  text-align: center;
  padding: 2rem;
  flex: 0 0 200px;
  transition: var(--transition-fast);
}

.metric-item:hover {
  transform: translateY(-5px);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.metric-label {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-highlight);
}


.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.program-card {
  flex: 0 0 calc(33.333333% - 2rem);
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--color-shadow);
}

.program-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.program-content {
  padding: 2rem;
}

.program-title {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.program-detail {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.program-detail i {
  color: var(--color-highlight);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.program-footer {
  padding: 1rem 2rem;
  background-color: rgba(0, 240, 255, 0.05);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-duration {
  font-size: 0.9rem;
  color: var(--color-text-light);
  opacity: 0.8;
}

@media (max-width: 992px) {
  .program-card {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .program-card {
    flex: 0 0 100%;
  }
}


.simulator-container {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  padding: 2rem;
  margin: 4rem 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-shadow);
  overflow: hidden;
  position: relative;
}

.simulator-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
}

.simulator-header {
  margin-bottom: 2rem;
  text-align: center;
}

.simulator-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.simulator-description {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.simulator-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.simulator-form-group {
  margin-bottom: 1.5rem;
}

.simulator-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.simulator-input, 
.simulator-select, 
.simulator-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background-color: rgba(5, 9, 20, 0.7);
  color: var(--color-text-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.simulator-input:focus, 
.simulator-select:focus, 
.simulator-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-shadow);
}

.simulator-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.simulator-visual {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.simulator-chart {
  flex: 1;
  min-width: 300px;
  height: 300px;
  background-color: rgba(5, 9, 20, 0.7);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simulator-chart canvas {
  max-width: 100%;
  max-height: 100%;
}

.simulator-recommendations {
  background-color: rgba(5, 9, 20, 0.7);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.recommendation-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: flex-start;
}

.recommendation-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recommendation-icon {
  color: var(--color-highlight);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.simulator-project {
  background-color: rgba(5, 9, 20, 0.8);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  position: relative;
}

.simulator-project-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.simulator-project-title {
  font-weight: 700;
  color: var(--color-accent);
}

.simulator-project-priority {
  display: flex;
  gap: 0.25rem;
}

.priority-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 240, 255, 0.2);
}

.priority-dot.active {
  background-color: var(--color-accent);
}

.simulator-project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.project-detail {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-weight: 700;
}

.energy-high {
  color: var(--color-highlight);
}

.energy-medium {
  color: #FFC107;
}

.energy-low {
  color: var(--color-accent);
}

.project-remove {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-text-light);
  opacity: 0.5;
  transition: var(--transition-fast);
  cursor: pointer;
}

.project-remove:hover {
  opacity: 1;
  color: var(--color-highlight);
}


.form-container {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background-color: rgba(5, 9, 20, 0.7);
  color: var(--color-text-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-shadow);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-actions {
  margin-top: 2rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}

.iti__selected-flag {
  background-color: rgba(5, 9, 20, 0.5) !important;
}

.iti__country-list {
  background-color: var(--color-bg-light) !important;
  color: var(--color-text-light) !important;
  border-color: rgba(0, 240, 255, 0.2) !important;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 240, 255, 0.1) !important;
}


.faq-section {
  margin: 4rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-accent);
  transition: var(--transition-fast);
  font-family: var(--font-heading);
}

.faq-icon {
  transition: var(--transition-fast);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}


.philosophy-section,
.directions-section {
  margin-top: 80px;
}

.philosophy-hero,
.directions-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5rem;
}

.philosophy-hero:before,
.directions-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.philosophy-hero:before {
  background-image: url('../images/focus-management.jpg');
}

.directions-hero:before {
  background-image: url('../images/interactive-planning.jpg');
}

.philosophy-hero:after,
.directions-hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-bg-dark) 5%, rgba(5, 9, 20, 0.7) 50%, var(--color-bg-dark) 95%);
  z-index: 2;
}

.philosophy-hero-content,
.directions-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.direction-container {
  margin-bottom: 5rem;
}

.direction-header {
  margin-bottom: 2rem;
}

.direction-item {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.direction-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.direction-content {
  padding: 2rem;
}

.direction-title {
  color: var(--color-accent);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.direction-description {
  margin-bottom: 2rem;
}

.direction-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.detail-block h4 {
  color: var(--color-highlight);
  margin-bottom: 1rem;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.detail-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.direction-footer {
  background-color: rgba(0, 240, 255, 0.05);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.contact-hero {
  height: 40vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5rem;
}

.contact-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/planning-session.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.contact-hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-bg-dark) 5%, rgba(5, 9, 20, 0.7) 50%, var(--color-bg-dark) 95%);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.contact-info-container {
  margin-bottom: 4rem;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.contact-map-container {
  margin: 3rem 0;
  height: 400px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-hours {
  margin-top: 2rem;
}

.hours-title {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  margin-bottom: 0.5rem;
  display: flex;
}

.day {
  min-width: 100px;
  font-weight: 700;
}


footer {
  background-color: var(--color-bg-dark);
  padding: 4rem 0 2rem;
  position: relative;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--color-accent) 50%, transparent 95%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-info p {
  margin-bottom: 1rem;
}

.footer-contact-list {
  list-style: none;
  margin-top: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--color-accent);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.footer-nav h4,
.footer-legal h4 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
}

.footer-nav-item,
.footer-legal-item {
  margin-bottom: 1rem;
}

.footer-nav-link,
.footer-legal-link {
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-cookie-settings {
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.footer-cookie-settings:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer-cookie-settings i {
  margin-right: 0.5rem;
}

.floating-cookie-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 99;
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.floating-cookie-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--color-shadow);
}

.floating-cookie-button i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-info {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-info {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


.policy-section {
  margin-top: 120px;
  margin-bottom: 5rem;
}

.policy-container {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.policy-header {
  margin-bottom: 3rem;
  text-align: center;
}

.policy-title {
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--color-accent);
  font-style: italic;
}

.policy-content h2 {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin: 2.5rem 0 1.5rem;
}

.policy-content h3 {
  color: var(--color-highlight);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
  margin: 1.5rem 0 2rem 1.5rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.policy-contact {
  background-color: rgba(5, 9, 20, 0.5);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-light);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: var(--transition-medium);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalIn 0.3s forwards;
}

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

.cookie-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-title {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.close-modal {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal:hover {
  color: var(--color-highlight);
}

.cookie-modal-body {
  padding: 2rem;
}

.cookie-preference {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.cookie-preference:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-type {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0;
}

.toggle-container {
  position: relative;
  width: 60px;
  height: 30px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-text-light);
  transition: var(--transition-fast);
  border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-shadow);
}

.toggle-input:checked + .toggle-slider:before {
  transform: translateX(30px);
  background-color: var(--color-bg-dark);
}

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

.cookie-preference-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cookie-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}


.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.dialog-overlay.show {
  opacity: 1;
  visibility: visible;
}

.dialog-container {
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-shadow);
  position: relative;
  animation: modalIn 0.3s forwards;
  overflow: hidden;
}

.dialog-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
}

.dialog-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.dialog-title {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.dialog-message {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.dialog-actions {
  margin-top: 1rem;
}


.thanks-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thanks-container {
  max-width: 700px;
  background-color: var(--color-bg-light);
  border-radius: var(--card-radius);
  padding: 4rem 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px var(--color-shadow);
  position: relative;
  overflow: hidden;
}

.thanks-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.thanks-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.return-home {
  margin-top: 2rem;
}


.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.w-100 {
  width: 100% !important;
}


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

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

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px var(--color-shadow);
  }
  50% {
    box-shadow: 0 0 20px var(--color-shadow);
  }
  100% {
    box-shadow: 0 0 5px var(--color-shadow);
  }
}

.glow-pulse {
  animation: glowPulse 3s infinite;
}