/*
Theme Name: Ukrainian Digital Solutions
Description: A professional business theme for Ukrainian Digital Solutions company with multilingual support and contact form functionality.
Version: 1.0
Author: Ukrainian Digital Solutions
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0057B8 0%, #0057B8 50%, #FFD700 50%, #FFD700 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #FFFFFF;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-title {
  color: #0057B8;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.hero-logo {
  max-width: 200px;
  margin-bottom: 30px;
}

.section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 40px;
  background: #FFFFFF;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #0057B8;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.title-underline {
  width: 100px;
  height: 4px;
  background-color: #0057B8;
}

.section-logo {
  max-width: 120px;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.proposal-content {
  font-size: 20px;
  line-height: 1.6;
  padding: 30px;
  background-color: #F2F2F2;
  border-radius: 10px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.advantage-card {
  padding: 30px;
  background-color: #F2F2F2;
  border-radius: 10px;
  text-align: center;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.advantage-title {
  color: #0057B8;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.advantage-description {
  font-size: 16px;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.service-block {
  padding: 25px;
  background-color: #F2F2F2;
  border-radius: 10px;
}

.service-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #0057B8;
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-title {
  color: #0057B8;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-list {
  font-size: 16px;
  line-height: 1.5;
}

.service-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-list li:before {
  content: "–";
  position: absolute;
  left: 0;
  color: #0057B8;
}

.workflow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.workflow-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #0057B8;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-title {
  color: #0057B8;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-description {
  font-size: 14px;
  line-height: 1.4;
}

.contact-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0057B8 0%, #0057B8 50%, #FFD700 50%, #FFD700 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #FFFFFF;
}

.contact-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-title {
  color: #0057B8;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: #000000;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-logo {
  max-width: 150px;
  margin-bottom: 30px;
}

.contact-info {
  font-size: 18px;
  color: #000000;
  margin: 20px 0;
}

.contact-button {
  background-color: #0057B8;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #003d82;
  transform: scale(1.05);
}

.slogan {
  font-size: 24px;
  font-weight: bold;
  color: #0057B8;
  margin-top: 30px;
  font-style: italic;
}

.contact-form {
  max-width: 500px;
  margin: 30px auto;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  color: #0057B8;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0057B8;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.lang-button {
  background-color: #0057B8;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin-right: 5px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 768px) {
  .advantages-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-container {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form {
    max-width: 100%;
  }
}

