.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: #0077cc;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

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

:root {
  --primary-blue: #0077cc;
  --secondary-blue: #00aaff;
  --accent-blue: #66ccff;
  --bg-light-blue: #e6f7ff;
  --bg-dark-blue: #003366;
  --text-color: #f0f8ff;
  --font-family: "Roboto", sans-serif;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light-blue);
  color: var(--text-color);
  line-height: 1.6;
}

.site-header {
  background-color: var(--primary-blue);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 1s ease-out;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1rem;
  padding: 5px 10px;
  transition: color var(--transition-speed) ease,
    background-color var(--transition-speed) ease;
  border-radius: 4px;
}

.site-nav ul li a:hover {
  background-color: var(--accent-blue);
  color: var(--bg-dark-blue);
}

.content-section {
  width: 100%;
  height: calc(100vh - 100px);
  margin-top: 20px;
}

.content-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--primary-blue);
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 119, 204, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 1s ease-out;
}

.cookies-div p {
  font-size: 0.9rem;
  color: var(--text-color);
}

.cookies-div button {
  background-color: var(--accent-blue);
  color: var(--bg-dark-blue);
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.cookies-div button:hover {
  background-color: var(--secondary-blue);
}

.site-footer {
  background-color: var(--primary-blue);
  padding: 40px 20px;
  margin-top: 40px;
  animation: slideUp 1s ease-out;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-logo,
.footer-contact,
.footer-hours {
  flex: 1 1 300px;
}

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

.footer-logo p {
  font-size: 1rem;
  color: var(--accent-blue);
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 1.2rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.footer-contact p,
.footer-hours p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 5px;
}

.footer-links {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-color);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  animation: fadeIn 1.5s ease-out;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--accent);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 0 8px var(--accent);
}

.btn {
  background-color: var(--accent);
  color: var(--bg-dark-blue);
  padding: 12px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color var(--transition-speed) ease;
}

.btn:hover {
  background-color: var(--accent-hover);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us-service {
  background: linear-gradient(135deg, #0077cc, #00aaff);
  color: #f0f8ff;
  padding: 80px 20px;
  text-align: left;
}

.about-us-service .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-service h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #e0f8ff;
  animation: fadeInDown 1s ease-out;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.text-content {
  flex: 1 1 600px;
  animation: fadeIn 1s ease-out;
}

.text-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #e0f8ff;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-content ul {
  list-style: disc inside;
  margin-bottom: 20px;
}

.image-content {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.image-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .text-content,
  .image-content {
    flex: 1 1 100%;
  }
  .image-content {
    margin-top: 20px;
  }
}

.services-section {
  background: linear-gradient(135deg, #00aaff, #0077cc);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

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

.services-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #e0f8ff;
  animation: fadeInDown 1s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

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

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #a3d4ff;
}

.service-info p {
  font-size: 1rem;
  line-height: 1.6;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.reviews-section {
  background: linear-gradient(135deg, #0077cc, #00aaff);
  padding: 80px 20px;
  color: #f0f8ff;
  text-align: center;
}

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

.reviews-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #e0f8ff;
  animation: fadeInDown 1s ease-out;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #a3d4ff;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.review-card h3 {
  font-size: 1.2rem;
  color: #a3d4ff;
  margin-top: 10px;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-section {
  background: linear-gradient(135deg, #00aaff, #0077cc);
  padding: 80px 20px;
  color: #f0f8ff;
  text-align: center;
}

.contact-form-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #e0f8ff;
  animation: fadeInDown 1s ease-out;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #f0f8ff;
  font-size: 1rem;
  outline: none;
  transition: background-color 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-form-section button {
  padding: 15px;
  background-color: #66ccff;
  color: #003366;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-section button:hover {
  background-color: #00aaff;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullpage-contact {
  background: linear-gradient(135deg, #00aaff, #0077cc);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  color: #f0f8ff;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.info-column,
.form-column {
  flex: 1 1 500px;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInLeft 1s ease-out;
}

.info-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #e0f8ff;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-details strong {
  color: #a3d4ff;
}

.discount-info p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-column {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  animation: fadeInRight 1s ease-out;
}

.form-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e0f8ff;
  text-align: center;
}

.form-column form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-column input,
.form-column textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #f0f8ff;
  font-size: 1rem;
  outline: none;
  transition: background-color 0.3s ease;
}

.form-column input:focus,
.form-column textarea:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

.form-column button {
  padding: 15px;
  background-color: #66ccff;
  color: #003366;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-column button:hover {
  background-color: #00aaff;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.detailed-services {
  background: linear-gradient(135deg, #00aaff, #0077cc);
  color: #f0f8ff;
  padding: 80px 20px;
}

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

.detailed-services h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #e0f8ff;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.service-details {
  flex: 2 1 500px;
}

.service-details h3 {
  font-size: 2rem;
  color: #a3d4ff;
  margin-bottom: 15px;
}

.service-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-details ul {
  list-style: disc;
  margin-left: 20px;
}

.service-details ul li {
  font-size: 1rem;
  margin-bottom: 8px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: center;
  }
  .service-details {
    text-align: center;
  }
}

.about-us-company {
  background: linear-gradient(135deg, #00aaff, #0077cc);
  color: #f0f8ff;
  padding: 80px 20px;
  text-align: left;
}

.about-us-company .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-company h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #e0f8ff;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.company-timeline {
  margin-bottom: 40px;
}

.timeline-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.timeline-item h3 {
  font-size: 1.8rem;
  color: #a3d4ff;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.company-values {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.company-values h3 {
  font-size: 2rem;
  color: #a3d4ff;
  margin-bottom: 20px;
}

.company-values ul {
  list-style: disc;
  padding-left: 20px;
}

.company-values ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.company-team {
  animation: fadeInUp 0.8s ease-out;
}

.company-team h3 {
  font-size: 2rem;
  color: #a3d4ff;
  margin-bottom: 20px;
}

.company-team p {
  font-size: 1.1rem;
  line-height: 1.6;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-us-company {
    padding: 40px 20px;
  }
}
