/* Основни стилове */
:root {
  --primary-color: #4dd0e1;
  --secondary-color: #26c6da;
  --dark-color: #333;
  --light-color: #f4f4f4;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  background: var(--light-color);
}

/* Navbar */
.ftco_navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: transparent;
}

.navbar-brand {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  padding: 0 10px;
}

.nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* CTA Button */
.nav-item.cta .nav-link {
  background: var(--primary-color);
  padding: 0.7rem 1.5rem !important;
  border-radius: 25px;
  color: #fff !important;
}

.nav-item.cta .nav-link:hover {
  background: var(--secondary-color);
}

/* Scrolled State */
.ftco_navbar.scrolled {
  position: fixed;
  background: #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ftco_navbar.scrolled .nav-link {
  color: #000 !important;
}

.ftco_navbar.scrolled .nav-link:hover {
  color: var(--primary-color) !important;
}

.ftco_navbar.scrolled .navbar-brand {
  color: #000;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    color: #000 !important;
  }

  .nav-item.cta {
    margin-top: 10px;
  }

  .nav-item.cta .nav-link {
    width: 100%;
    text-align: center;
  }
}

/* Burger Menu */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 25px;
  height: 25px;
  line-height: 1;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler-icon:after {
  bottom: -8px;
}

.scrolled .navbar-toggler-icon,
.scrolled .navbar-toggler-icon:before,
.scrolled .navbar-toggler-icon:after {
  background-color: #000;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Sections */
.ftco-section {
  padding: 7em 0;
}

/* Carts */
.services {
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 20px;
}

.services:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Form */
.form-control {
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

/* Gallery */
.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery img {
  transition: all 0.3s ease;
}

.gallery:hover img {
  transform: scale(1.1);
}

/* Owl Nav */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.owl-prev,
.owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.5rem !important;
  transition: all 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
  background: var(--primary-color) !important;
}

.owl-prev {
  left: 20px;
}

.owl-next {
  right: 20px;
}

@media (max-width: 768px) {
  .slider-text h1 {
    font-size: 2.5rem;
  }

  .slider-text p {
    font-size: 1rem;
  }
}

/* Services section */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.service-box {
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-box p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .service-box {
    height: auto;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-box h3 {
    font-size: 1.3rem;
  }
  .service-box {
    height: auto;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 50%, #fff 50%);
}

.why-choose-content {
  padding-right: 50px;
}

.why-choose-content .section-title {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-text p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.why-choose-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
  width: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .why-choose-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
    background: #f8f9fa;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .feature-icon i {
    font-size: 1.2rem;
  }

  .feature-text h3 {
    font-size: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.testimonials-section .section-title {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 20px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-content p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-author h4 {
  color: var(--dark-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    margin-bottom: 60px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-img {
    width: 70px;
    height: 70px;
  }

  .testimonial-author h4 {
    font-size: 1.1rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  color: var(--dark-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--dark-color);
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 5px;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.price .period {
  font-size: 1rem;
  color: #6c757d;
  margin-left: 5px;
}

.pricing-features {
  flex-grow: 1;
}

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

.pricing-features li {
  padding: 12px 0;
  color: #666;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.pricing-features li i.fa-check {
  color: #28a745;
}

.pricing-features li i.fa-times {
  color: #dc3545;
}

.pricing-features li.disabled {
  color: #adb5bd;
}

.pricing-footer {
  text-align: center;
  margin-top: 30px;
}

.pricing-footer .btn {
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 500;
  width: 100%;
}

@media (max-width: 991px) {
  .pricing-card {
    margin-bottom: 30px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-card {
    height: auto;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #fff;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 150px;
  }
}

/* Map Section */
#map {
  width: 100%;
  height: 450px;
}

#map iframe {
  width: 100%;
  height: 100%;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  overflow: hidden;
}

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

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info .specialty {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-info .description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-image img {
    height: 250px;
  }

  .team-info {
    padding: 20px;
  }

  .team-info h3 {
    font-size: 1.3rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background-image: url("../images/bg_1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-text {
  color: #fff;
  max-width: 650px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-text .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  background-color: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}

.hero-text .btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* Achievements Section */
.achievements-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/bg_1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.achievements-section .section-title {
  color: #fff;
}

.achievement-box {
  height: 100%;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.achievement-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.achievement-content p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .achievement-box {
    margin-bottom: 30px;
    height: auto;
  }

  .achievement-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .achievement-box {
    padding: 20px 15px;
  }

  .achievement-icon {
    font-size: 2rem;
  }

  .achievement-content h3 {
    font-size: 1.8rem;
  }

  .achievement-content p {
    font-size: 1rem;
  }
}

/* Footer Section */
.ftco-footer {
  background: #1a1a1a;
  padding: 80px 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

.ftco-footer-widget h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.ftco-footer-widget p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.ftco-footer-social {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ftco-footer-social li {
  display: inline-block;
  margin-right: 15px;
}

.ftco-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.ftco-footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.copyright {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .ftco-footer {
    padding: 60px 0 20px;
  }

  .ftco-footer-widget {
    margin-bottom: 40px;
  }
}
/* HERO-2-SECTION */
.hero-2-section {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),
    url(../images/bg_2.jpg);
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  background-position: center;
  justify-content: center;
  align-items: center;
}
.text-box {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
}

.text-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  .text-box h2 {
    font-size: 1.5rem;
  }
}

/* HERO-2-SECTION END*/

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
