
@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');


:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

ul {
  margin-bottom: 1rem;
}

.site-header {
  background-color: var(--primary-color);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-logo {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.5rem;
  background-color: var(--primary-color);
  color: white;
}


.navbar-menu {
  background-color: var(--primary-color);
}

.navbar-item {
  color: white;
  transition: all 0.3s ease;
}

.navbar-item:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--light-color);
}

.navbar-burger {
  color: white;
}


.hero-main, .hero {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-main {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-content .buttons {
  justify-content: center;
}

.hero-body .title,
.hero-body .subtitle {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


.btn-primary {
   background-color: var(--secondary-color);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 6px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: all 0.3s ease;
   cursor: pointer;
   margin: 1rem;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 1rem;
  display: inline-block;
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-accent:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.section-alt {
  background-color: var(--light-color);
}

.section-dark {
  background-color: var(--primary-color);
  color: white;
}

.section-dark strong {
  color: inherit;
}

.section-padding {
  padding: 4rem 0;
}

.section-small {
  padding: 2rem 0;
}


.service-card {
   border: 1px solid #e0e0e0;
   border-radius: 12px;
   overflow: hidden;
   transition: all 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
   background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:hover {
   box-shadow: 0 12px 24px rgba(0,0,0,0.15);
   transform: translateY(-6px);
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}


.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--secondary-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}


.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  object-fit: cover;
  border: 4px solid var(--light-color);
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-position {
   color: #7f8c8d;
   font-style: italic;
}

.mission-image {
   transition: all 0.3s ease;
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
   border-radius: 12px;
}

.mission-image:hover {
   transform: scale(1.02);
   box-shadow: 0 12px 28px rgba(0,0,0,0.2);
   border-radius: 16px;
}

.achievement-box {
   background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding: 2rem;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   border: 1px solid rgba(52, 152, 219, 0.1);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
}

.achievement-box:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0,0,0,0.15);
   border-color: rgba(52, 152, 219, 0.2);
}

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

.achievement-label {
   font-size: 1.1rem;
   color: #7f8c8d;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

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

/* Contact page styles */
.contact-info-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(52, 152, 219, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: rgba(52, 152, 219, 0.2);
}

.contact-icon-large {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.contact-info-box h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 0.5rem;
}

.contact-features {
  margin: 2rem 0;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.contact-feature:last-child {
  border-bottom: none;
}

.contact-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
  min-width: 20px;
  flex-shrink: 0;
}

.contact-feature div {
  flex-grow: 1;
}

.contact-feature strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-feature p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.contact-hours {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 2rem 0;
}

.contact-hours h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table td {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.contact-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  width: 50%;
}

.contact-table td:last-child {
  color: #7f8c8d;
}

.contact-form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(52, 152, 219, 0.1);
  height: 100%;
  margin-top: 2rem;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.form-note {
  font-size: 0.8rem;
  color: #7f8c8d;
  margin-left: 1rem;
  font-style: italic;
}

.service-areas-map {
  margin-bottom: 1rem;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-area-list li:hover {
  padding-left: 0.5rem;
  color: var(--secondary-color);
}

.service-area-list li:last-child {
  border-bottom: none;
}

.service-area-list li i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

.service-areas-cta {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.service-areas-cta h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-areas-cta p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.service-areas-cta .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-areas-cta .btn-primary,
.service-areas-cta .btn-secondary {
  margin: 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.accordion-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.accordion-header h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-icon {
  background: var(--secondary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.accordion-content p {
  padding: 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 1.5rem;
  opacity: 1;
  border-top: 1px solid #eee;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}


.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ecf0f1;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-section a:hover {
  color: white;
  padding-left: 0.25rem;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-section .social-links a {
  color: #bdc3c7;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
  color: white;
  transform: scale(1.1);
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.95);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex-grow: 1;
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}


@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .navbar-menu {
    background-color: var(--primary-color);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}


.text-primary {
  color: var(--secondary-color);
}

.text-accent {
  color: var(--accent-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}


.text-white strong,
.text-white b,
.text-light strong,
.text-light b {
  color: inherit;
}

[class*="text-"] strong,
[class*="text-"] b {
  color: inherit;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}


.process-step {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: #eee;
}

.process-step:last-child::after {
  display: none;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}

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

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


.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  min-width: 2rem;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.price-period {
   font-size: 1rem;
   color: #7f8c8d;
}

/* Добавленные классы для attic-basement-services.html */
.feature-box {
   background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding: 2.5rem;
   border-radius: 16px;
   box-shadow: 0 8px 24px rgba(0,0,0,0.1);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   border: 1px solid rgba(52, 152, 219, 0.1);
   transition: all 0.3s ease;
}

.feature-box:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 32px rgba(0,0,0,0.15);
   border-color: rgba(52, 152, 219, 0.2);
}

.feature-box h3 {
   margin-bottom: 1.25rem;
   margin-top: 0;
   color: var(--primary-color);
   font-size: 1.3rem;
}

.feature-box p {
   margin-bottom: 0;
   flex-grow: 1;
   line-height: 1.6;
   color: #555;
}

.process-step-small {
   background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding: 2rem 1.5rem;
   border-radius: 16px;
   box-shadow: 0 6px 16px rgba(0,0,0,0.1);
   text-align: center;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   border: 1px solid rgba(52, 152, 219, 0.1);
   transition: all 0.3s ease;
}

.process-step-small:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 24px rgba(0,0,0,0.15);
   border-color: rgba(52, 152, 219, 0.2);
}

.process-step-small .step-number {
   background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
   color: white;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   font-weight: 700;
   margin: 0 auto 1.5rem auto;
   box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.process-step-small h4 {
   margin-bottom: 1.25rem;
   margin-top: 0;
   color: var(--primary-color);
   font-size: 1.2rem;
}

.process-step-small p {
   margin-bottom: 0;
   line-height: 1.6;
   color: #555;
}

.service-image {
   transition: all 0.3s ease;
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
   border-radius: 12px;
}

.service-image:hover {
   transform: scale(1.03);
   box-shadow: 0 12px 28px rgba(0,0,0, 0.2);
   border-radius: 16px;
}

.service-features {
   list-style: none;
   padding: 0;
   margin: 1.5rem 0;
}

.service-features li {
   padding: 0.75rem 0;
   border-bottom: 1px solid #f0f0f0;
   position: relative;
   padding-left: 2rem;
   transition: all 0.3s ease;
}

.service-features li:hover {
   background-color: rgba(52, 152, 219, 0.05);
   border-radius: 4px;
   padding-left: 2.25rem;
}

.service-features li:before {
   content: "✓";
   position: absolute;
   left: 0;
   color: var(--success-color);
   font-weight: bold;
   font-size: 1.1rem;
   transition: all 0.3s ease;
}

.service-features li:hover:before {
   transform: scale(1.1);
}

.service-features li:last-child {
   border-bottom: none;
}

.btn-accent:hover {
   background-color: #c0392b;
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cookie-accept {
   background-color: transparent;
   color: #bdc3c7;
   border: 2px solid #bdc3c7;
   padding: 12px 24px;
   border-radius: 6px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: all 0.3s ease;
   cursor: pointer;
}

.cookie-accept:hover {
   background-color: #bdc3c7;
   color: white;
}

.cookie-decline {
   background-color: var(--secondary-color);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 6px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: all 0.3s ease;
   cursor: pointer;
}

.cookie-decline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Service list styles for attic-basement-services.html */
.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.service-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    flex-shrink: 0;
}

.service-content {
    flex-grow: 1;
}

.service-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 769px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gallery styles for project-showcase.html */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 2px solid #ddd;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: #ddd;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-btn.is-active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 500px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.gallery-overlay p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.gallery-overlay .btn-primary {
    align-self: flex-start;
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.gallery-overlay .btn-primary:hover {
    background-color: rgba(255,255,255,0.3);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

.testimonial-card-large {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--light-color);
    background-size: cover;
    background-position: center;
}

.testimonial-author div {
    /* flex-grow: 1; */
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.project-type {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive design for gallery */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 400px;
    }
    
    .testimonial-card-large {
        padding: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Gallery filter animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Стили для service-process.html */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: #eee;
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: -1rem;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.process-step-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.process-step-content:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.process-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 4px;
    padding-left: 0.25rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-action {
    text-align: center;
    margin-top: 1.5rem;
}

.timeline-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.timeline-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.timeline-duration {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-steps {
    margin-top: 1rem;
}

.timeline-step {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-step:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-step:last-child {
    border-bottom: none;
}

.communication-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    text-align: center;
    margin: 2rem 0;
}

.communication-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.communication-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.communication-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.communication-feature:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.communication-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.communication-feature div {
    text-align: left;
}

.communication-feature strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.communication-feature p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.quality-feature {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.quality-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3498db 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.quality-feature h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.quality-feature p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Адаптивный дизайн для service-process.html */
@media (max-width: 768px) {
    .process-step {
        padding-left: 1.5rem;
    }
    
    .process-step::before {
        left: 0.25rem;
        top: 0.5rem;
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .process-step::after {
        left: 0.75rem;
    }
    
    .process-step-number {
        margin-left: -0.75rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1rem;
    }
    
    .process-step-content {
        padding: 1.5rem;
    }
    
    .timeline-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .timeline-steps {
        margin-left: 1rem;
    }
    
    .communication-box {
        padding: 2rem;
    }
    
    .communication-features {
        grid-template-columns: 1fr;
    }
    
    .communication-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .communication-feature i {
        margin-bottom: 1rem;
    }
}