/* Language Switcher */
.language-switcher {
  position:absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.lang-btn {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 50px;
  text-align: center;
}

.lang-btn:hover {
  background: var(--color-accent);
  color: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate {
  opacity: 0;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

:root {
  --color-bg: #f4f5f7;
  --color-dark: #1a1a1a;
  --color-accent: #c3a762;
  --color-accent-dark: #a99256;
  --color-white: #ffffff;
  --color-gray: #e8e8e8;
  --side-padding: 40px;
}

html {
  margin-right: calc(-1 * (100vw - 100%));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Philosopher", serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(195, 167, 98, 0.4);
}

.btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(195, 167, 98, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
    font-weight: 600; 
      z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
}

.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(195, 167, 98, 0.3);
  margin: 0 var(--side-padding);
}

.hero-slogan {
  font-size: 1.8rem;
  margin-bottom: 50px;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.slogan-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.slogan-item {
  margin: 0 5px;
  position: relative;
  transition: all 0.3s ease;
}

.slogan-item:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.slogan-divider {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  line-height: 1;
}

.slogan-subline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-weight: 300;
}

.slogan-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-top: 20px;
}

.logo {
  font-family: "Philosopher", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slogan {
  font-size: 1.8rem;
  margin-bottom: 50px;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.social-links {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--color-accent);
  transform: translateY(-5px);
}

.qr-container {
  position: absolute;
  right: 5%;
  bottom: 10%;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.qr-text {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-white);
}

.qr-code img {
  width: 150px;
  height: 150px;
  background: var(--color-white);
  padding: 10px;
  border-radius: 5px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

/* About Section */
.about {
  background-color: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  position: relative;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--color-accent);
  border-radius: 15px;
  z-index: -1;
  transition: all 0.5s ease;
}

.about-image:hover::before {
  transform: translate(10px, 10px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 15px;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Services Section */
.services {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://github.com/ValkoHappy/panzzi/blob/main/imgs/fon2.png?raw=true") center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 70px;
  z-index: 1;
}

.service-item {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%; /* Добавлено для одинаковой высоты */
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 25px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  margin-bottom: 25px;
  flex-grow: 1; /* Добавлено для выравнивания кнопок */
}

/* Gallery Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
}

.gallery-modal-content {
  position: relative;
  width: 90vw;
  max-width: 900px;
  height: 90vh;
  max-height: 700px;
  margin: 5vh auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1002;
}

.modal-header {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  background: white;
  border-bottom: 1px solid #eee;
}

.close-modal {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--color-accent);
}

.main-gallery-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}

.main-gallery-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.active-gallery-image,
.active-gallery-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: auto;
  width: auto;
}

.active-gallery-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.gallery-video-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  background: rgba(0,0,0,0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(0,0,0,0.9);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-thumbnails-container {
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
  height: 100%;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) #eee;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: #eee;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
  border-radius: 3px;
}

.thumbnail {
  position: relative;
  width: 120px;
  height: 80px;
  min-width: 120px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  background: #f5f5f5;
}

.thumbnail img,
.thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: var(--color-accent);
}

.thumbnail.active {
  border-color: var(--color-accent-dark);
}

.thumbnail-video-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  color: white;
  background: rgba(0,0,0,0.5);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .gallery-modal-content {
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }
  
  .modal-header {
    height: 60px;
  }
  
  .close-modal {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .gallery-thumbnails-container {
    height: 80px;
    padding: 10px;
  }
  
  .thumbnail {
    width: 80px;
    height: 60px;
    min-width: 80px;
  }
  
  .gallery-video-icon {
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .thumbnail-video-icon {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }
}
/* Projects Section */
.projects {
  background-color: var(--color-white);
}
.projects-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  background: var(--color-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  min-height: 400px;
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.project-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.project-item:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-category {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  font-size: 1.1rem;
}

.project-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.project-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.project-features {
  margin-bottom: 30px;
}

.project-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.project-feature i {
  color: var(--color-accent);
  margin-right: 10px;
  font-size: 1.2rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-link i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.project-link:hover {
  color: var(--color-accent-dark);
}

.project-link:hover i {
  transform: translateX(5px);
}

/* Дополнительные стили для проектов */
.project-category {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.project-title {
  position: relative;
  padding-bottom: 15px;
}

.project-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

.project-feature {
  transition: all 0.3s ease;
}

.project-feature:hover {
  transform: translateX(5px);
}

.project-feature i {
  transition: transform 0.3s ease;
}

.project-feature:hover i {
  transform: scale(1.2);
}
/* Дополнительные стили для проектов */
.project-category {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.project-title {
  position: relative;
  padding-bottom: 15px;
}

.project-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

.project-feature {
  transition: all 0.3s ease;
}

.project-feature:hover {
  transform: translateX(5px);
}

.project-feature i {
  transition: transform 0.3s ease;
}

.project-feature:hover i {
  transform: scale(1.2);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://github.com/ValkoHappy/panzzi/blob/main/imgs/fon.png?raw=true") center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.reasons-list {
  max-width: 90%;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.reasons-list ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.reasons-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-dark);
}

.reasons-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.cta-box {
  margin-top: 80px;
  background: var(--color-dark);
  border-radius: 15px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-content p {
  opacity: 0.8;
}

.cta-box .btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.cta-box .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .reasons-list ul {
    grid-template-columns: 1fr;
  }
  
  .reasons-list li {
    font-size: 1rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .cta-box .btn {
    margin-top: 20px;
  }
}

/* Contacts Section */
.contacts {
  background-color: var(--color-white);
}

.contacts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-item {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-link {
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-accent);
  color: white;
  border-radius: 30px;
  margin-top: 10px;
}

.contact-link:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(195, 167, 98, 0.3);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-content {
  background-color: var(--color-white);
  padding: 40px;
  max-width: 900px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow-y: auto;
  margin: 20px var(--side-padding);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

.close-modal:hover {
  color: var(--color-accent);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.modal-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-about {
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.footer-links ul {
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1300px) {
  .project-image {
    height: 100%;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-content,
  .project-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-container {
    gap: 40px;
  }

  .about-image,
  .project-image {
    height: 400px;
    order: -1;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 30px;
  }

  .logo {
    font-size: 3.5rem;
  }

  .hero-slogan {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .qr-container {
    position: static;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.9);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-methods {
    margin-top: 0px; 
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
  }

  .services-grid {
    margin-top: 0px; 
    grid-template-columns: repeat(1, 1fr);
  }

  .project-info {
    padding: 30px;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 30px auto;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --side-padding: 20px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    min-height: 700px;
  }

  .logo {
    font-size: 3rem;
  }

  .hero-slogan {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 25px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 30px 20px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .qr-container {
    position: absolute;
    right: 5%;
    bottom: 5%;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 35px;
  }

  .hero {
    min-height: 600px;
    height: auto;
    padding: 100px 0;
  }

  section {
    padding: 60px 0;
  }

  .about-image,
  .project-image {
    height: 300px;
  }

  .hero-slogan {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .slogan-description {
    font-size: 1rem;
  }

  .project-info {
    padding: 20px;
  }

  .project-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .project-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .contact-item {
    padding: 15px 10px;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --side-padding: 20px;
  }

  .hero {
    min-height: 500px;
    padding: 80px 0;
  }

  .logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .about-image,
  .project-image {
    height: 250px;
  }

  .about-content {
    gap: 30px;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .qr-code img {
    width: 120px;
    height: 120px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .gallery-item {
    height: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 500px;
  }

  .about-image {
    height: 350px;
  }

  .project-info {
    padding: 25px;
  }

  .service-item {
    padding: 20px;
  }
}

/* Clients Page Styles */
.clients-hero {
  min-height: 60vh;
}

.clients-info .cta-box {
  margin-top: 0px;
}

.client-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.client-category {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.client-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.category-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.client-category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.category-benefits {
  text-align: left;
  margin: 25px 0;
  list-style: none;
}

.category-benefits li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.category-benefits i {
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 3px;
}

.client-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 80px;
  background: var(--color-bg);
  padding: 50px;
  border-radius: 15px;
}

.office-image {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.client-office:hover .office-image img {
  transform: scale(1.03);
}

.office-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.office-contacts {
  margin: 30px 0;
}

.office-contacts p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.office-contacts i {
  margin-right: 15px;
  color: var(--color-accent);
  width: 20px;
  text-align: center;
}

@media (max-width: 992px) {
  .client-office {
    grid-template-columns: 1fr;
  }
  
  .office-image {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .client-categories {
    grid-template-columns: 1fr;
  }
  
  .client-office {
    padding: 30px;
  }
}

