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

body {
  font-family: 'Roboto', sans-serif;
  background: #F9FAF5;
  color: #1E293B;
  overflow-x: hidden;
}

#zenCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}


.content-wrapper {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.om-text {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  position: relative;
}

.om-text::after {
  content: 'OM';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.3;
}

.section-alt {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
}

.glass-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item.show {
  opacity: 1;
  transform: translateX(0);
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.btn-premium {
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.btn-premium:hover::before {
  width: 300px;
  height: 300px;
}

input, textarea {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  color: #1E293B;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  transition: all 0.3s ease;
  min-height: 4rem;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
  display: block;
}

textarea {
  min-height: 8rem;
  resize: vertical;
  padding: 1.75rem 1.5rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #10B981;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  padding: 1.75rem 1.5rem;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #1E3A8A;
  position: relative;
  display: inline-block;
}

h2.services-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.contact-heading {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #06B6D4);
  border-radius: 2px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1E3A8A;
  font-weight: 500;
  font-size: 0.95rem;
}

::placeholder {
  color: #94A3B8;
}

/* Hero section specific styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 0.5rem;
  color: #64748B;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 1.5rem;
  color: #64748B;
  font-weight: 300;
  max-width: 600px;
}

/* Services section specific styles */
.services-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.services-conclusion {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin-top: 3rem;
}

.service-title {
  color: #1E3A8A;
  font-size: 1.1rem;
}

.service-description {
  margin-top: 0.5rem;
  color: #64748B;
  line-height: 1.7;
}

/* Contact section specific styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

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

.form-group:last-of-type {
  margin-bottom: 2rem;
}

.btn-submit {
  width: 100%;
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.form-status {
  text-align: center;
  margin-top: 2rem;
  color: #10B981;
  font-weight: 500;
}

/* Footer specific styles */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  color: #64748B;
  font-size: 0.95rem;
}

/* Anti-bot protection styles */
.important-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.important-field label,
.important-field input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.important-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  font-size: 0;
  line-height: 0;
}

/* Form row layout for inline elements */
.form-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Security check styling - sleek and inline */
.security-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.security-check label {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 0;
  white-space: nowrap;
}

#math_answer {
  width: 60px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

/* GDPR checkbox styling */
.gdpr-checkbox {
  flex: 1;
  min-width: 250px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #475569;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  border-color: #10B981;
}

.checkbox-label input:checked ~ .checkmark {
  background-color: #10B981;
  border-color: #10B981;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-link {
  color: #06B6D4;
  text-decoration: underline;
  font-weight: 500;
}

.privacy-link:hover {
  color: #0891B2;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #1E3A8A;
  font-size: 1.5rem;
  font-weight: 600;
}

.close {
  color: #94A3B8;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close:hover {
  color: #EF4444;
}

.modal-body {
  padding: 2rem;
  color: #475569;
  line-height: 1.6;
}

.modal-body h4 {
  color: #1E3A8A;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.modal-footer {
  padding: 1rem 2rem 2rem;
  text-align: center;
}

.modal-footer .btn-premium {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .security-check {
    justify-content: center;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
