/* Global Styles */
:root {
  --primary-color: #2a7d6b;
  --secondary-color: #f5f5f5;
  --text-color: #333;
  --light-text: #777;
  --white: #fff;
  --border-radius: 4px;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #236358;
  border-color: #236358;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 10px;
}

.phone-number a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
}

.language-selector a {
  color: var(--light-text);
  text-decoration: none;
  margin: 0 5px;
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("https://psysexology.com/uploads/shared/2025-06-05_20-48-46.png");
  background-size: cover;
  background-position: center;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

/* About Me Section */
.about-me {
  padding: 80px 0;
}

.about-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.about-image-container {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 0 auto;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Work Directions Section */
.directions {
  padding: 80px 0;
}

.directions-list {
  list-style: none;
  padding-left: 0;
}

.directions-list li {
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.direction-number {
  display: inline-block;
  width: 30px;
  margin-right: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Credentials Section */
.credentials {
  padding: 80px 0;
}

.credentials-text {
  margin-bottom: 20px;
}

.credentials-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.credentials-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.credentials-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-image {
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-description {
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
}

.price {
  color: var(--primary-color);
  font-size: 18px;
}

.duration {
  color: var(--light-text);
  font-size: 14px;
}

.service-btn {
  align-self: flex-start;
}

/* Work Principles Section */
.principles {
  padding: 80px 0;
}

.principles-text {
  margin-bottom: 30px;
}

.principles-list {
  list-style: none;
  padding-left: 0;
}

.principles-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.principles-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.principles-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials-swiper {
  padding: 20px 0 50px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 500px;
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.accordion-button {
  font-weight: 600;
  padding: 20px 0;
  color: var(--text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232a7d6b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 0 0 20px 0;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-text {
  margin-bottom: 20px;
}

.footer-contacts p {
  margin-bottom: 10px;
}

.footer-contacts a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-contacts i {
  color: var(--primary-color);
  width: 20px;
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #236358;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: var(--light-text);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  color: var(--white);
  transform: scale(1.1);
}

/* Telegram Button */
.telegram-button {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #21aee1;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.telegram-button:hover {
  background-color: #00bcd4;
  color: var(--white);
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero::before {
    width: 100%;
    opacity: 0.2;
  }

  .hero-title {
    font-size: 36px;
  }

  .about-image-container {
    margin-top: 40px;
  }

  .principles-image {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .about-me,
  .directions,
  .credentials,
  .services,
  .principles,
  .testimonials,
  .faq {
    padding: 60px 0;
  }
}

