
:root {
  --primary-gradient-start: #1E3A8A;
  --primary-gradient-end: #7C3AED;
  --secondary-gradient-start: #0D9488;
  --secondary-gradient-end: #1E40AF;
  --bg-light: #F9FAFB;
  --bg-dark: #1F2937;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-light: #F9FAFB;
  --accent: #3B82F6;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-gradient-end);
}

.header {
  height: 80px !important;
}

.midnightInner {
  overflow: hidden !important;
  margin-top: 15px;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: var(--text-light);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--primary-gradient-end), var(--primary-gradient-start));
  color: var(--text-light);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--secondary-gradient-start), var(--secondary-gradient-end));
  color: var(--text-light);
}

.btn-secondary:hover {
  background: linear-gradient(90deg, var(--secondary-gradient-end), var(--secondary-gradient-start));
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-gradient-start);
  color: var(--primary-gradient-start);
}

.btn-outline:hover {
  background: var(--primary-gradient-start);
  color: var(--text-light);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.header-transparent {
  background: transparent;
}

.header-solid {
  background: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-dark {
  background: var(--bg-dark);
}

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

.logo {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li {
  margin: 0 1rem;
}

.nav-desktop a {
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
}

.nav-desktop a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
  transition: var(--transition);
}

.nav-desktop a:hover:after,
.nav-desktop a.active:after {
  width: 100%;
}

.header-dark .nav-desktop a {
  color: var(--text-light);
}

.nav-mobile {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--text-primary);
  transition: var(--transition);
}

.header-dark .hamburger span {
  background: var(--text-light);
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: var(--text-light);
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(124, 58, 237, 0.8));
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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


.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
}

.section-title p {
  max-width: 700px;
  margin: 1rem auto 0;
}


.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-image {
  height: 200px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gradient-end);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary-gradient-end);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-gradient-end);
}

.pricing-features {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-features li:last-child {
  border-bottom: none;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}


.tabs {
  margin-bottom: 2rem;
}

.tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.tabs-nav li {
  margin-right: 1rem;
}

.tabs-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 700;
  position: relative;
}

.tabs-nav a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
  transition: var(--transition);
}

.tabs-nav a.active {
  color: var(--primary-gradient-end);
}

.tabs-nav a.active:after,
.tabs-nav a:hover:after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gradient-end);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

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


.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--text-light);
}

.footer-nav a:hover {
  color: var(--primary-gradient-end);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 200px;
}

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

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  display: none;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

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

.cookie-settings-title {
  font-size: 1.5rem;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

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

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

.cookie-category-title {
  font-size: 1.25rem;
  margin: 0;
}

.cookie-category-description {
  margin-top: 0.5rem;
}

.cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  display: none;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--success);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-light);
    z-index: 1001;
    transition: var(--transition);
    padding: 2rem;
    overflow-y: auto;
  }
  
  .nav-mobile.show {
    right: 0;
  }
  
  .nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-mobile li {
    margin-bottom: 1rem;
  }
  
  .nav-mobile a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 700;
  }
  
  .nav-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
  }
  
  .nav-mobile-backdrop.show {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tabs-nav li {
    margin-right: 0;
  }
  
  .tabs-nav a {
    padding: 0.5rem 1rem;
  }
}