
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-image 1.2s ease-in-out;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-slider:active {
  cursor: grabbing;
}

.hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.slider-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.slide {
  display: none;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease-in-out;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: fadeInUp 0.6s ease-out;
}

.slide-content {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.slide-text {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.slide.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.slide.slide-in-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.slide.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}


.hero-slider.swiping {
  transition: none;
}

.hero-slider.swipe-left {
  transform: translateX(-10px);
  transition: transform 0.1s ease-out;
}

.hero-slider.swipe-right {
  transform: translateX(10px);
  transition: transform 0.1s ease-out;
}


@media (max-width: 768px) {
  .hero-slider {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .slide-title {
    font-size: 56px;
  }
  
  .slide-subtitle {
    font-size: 28.8px;
  }
  
  .slide-description {
    font-size: 22.4px;
    padding: 20px;
  }
}

.slider-nav .nav-btn,
.slider-indicators .indicator {
  transition: all 0.4s ease;
}

.slider-nav .nav-btn:hover,
.slider-indicators .indicator:hover {
  transform: scale(1.1);
}

.slider-indicators .indicator.active {
  transform: scale(1.2);
}

.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 48px;
  color: #ff8a00;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #ff8a00;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #ccc;
}

.contact-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.section-subtitle {
  font-size: 19.2px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 24px;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.contact-card p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-card small {
  color: #999;
  font-size: 14.4px;
  display: block;
  margin-bottom: 24px;
}

.contact-link {
  color: #ff8a00;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.call-btn, .email-btn, .location-btn {
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: white;
  border: none;
  padding: 12.8px 24px;
  border-radius: 25px;
  font-size: 14.4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.call-btn:hover, .email-btn:hover, .location-btn:hover {
  background: linear-gradient(135deg, #ff6b00, #ff8a00);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

.working-hours {
  text-align: left;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.emergency {
  background: #fff5f0;
  padding: 12.8px;
  border-radius: 8px;
  margin-top: 8px;
}

.day {
  font-weight: 500;
  color: #333;
}

.time {
  color: #666;
  font-weight: 500;
}

.contact-form-wrapper {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28.8px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.form-header p {
  color: #666;
  line-height: 1.6;
}

.modern-contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 15.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8a00;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.error-message {
  color: #e74c3c;
  font-size: 13.6px;
  margin-top: 8px;
  display: none;
}

.checkbox-group {
  margin: 32px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12.8px;
  cursor: pointer;
  font-size: 14.4px;
  color: #666;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: white;
  border: none;
  padding: 19.2px 48px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12.8px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff6b00, #ff8a00);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.form-message {
  margin-top: 24px;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 24px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .contact-card {
    padding: 19.2px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28.8px;
  }
  
  .contact-form-wrapper {
    padding: 16px;
  }
  
  .contact-card {
    padding: 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero-slider .slide {
    transition: all 0.8s ease-in-out;
  }
  
  .hero-slider .slide.slide-out-left,
  .hero-slider .slide.slide-out-right {
    transition: all 0.8s ease-in-out;
  }
  
  .hero-slider .slide.slide-in-left,
  .hero-slider .slide.slide-in-right {
    transition: all 0.8s ease-in-out;
  }
  
  .slide-title {
    font-size: 20px;
    line-height: 1.1;
  }
  
  .slide-subtitle {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .slide-description {
    font-size: 9px;
    padding: 15px 18px;
  }
  
  .hero-slider .slide-content {
    padding: 20px 15px;
  }
  
  .services-preview {
    gap: 15px;
    padding: 0 10px;
    max-width: 320px;
    margin-top: 30px;
  }
  
  .service-item {
    padding: 15px;
    max-width: 300px;
  }
  
  .service-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .service-link {
    font-size: 12px;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .service-icon .icon {
    font-size: 20px;
  }
  
  .services-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

.modern-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #ff8a00;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.contact-info i {
  color: #ff8a00;
  width: 16px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.footer-links a:hover {
  color: #ff8a00;
}

.working-hours p {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 50%;
  color: #ff8a00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff8a00;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.copyright p,
.design-credit p {
  color: #999;
  font-size: 16px;
  margin: 0;
}

.design-credit a {
  color: #ff8a00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.design-credit a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

.slide-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.slide-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  color: #ff8a00;
  background: rgba(0,0,0,0.4);
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.4;
  border: 1px solid rgba(255, 138, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.slide-description {
  font-size: 14px;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.6);
  padding: 30px 35px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.slide-description p {
  font-size: 14px;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  line-height: 1.6;
}

.slide-description ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  text-align: left;
  display: inline-block;
  max-width: 100%;
}

.slide-description li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-description li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 138, 0, 0.8);
  transform: scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s ease;
}

.indicator.active {
  background: #ff8a00;
  transform: scale(1.2);
}

.scroll-down-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transition: all 0.3s ease;
}

.scroll-down-btn:hover {
  color: #ff8a00;
  transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
  font-size: 14.4px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.services-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
}

.service-item {
  background: white;
  padding: 32px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  flex: 0 0 auto;
  width: 100%;
  max-width: 350px;
}

.service-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon .icon {
  font-size: 32px;
  color: white;
}

.service-item h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2b2b2b;
}

.service-item p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-link {
  color: #ff8a00;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #ff6b00;
  gap: 10px;
}

.gallery-item {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.gallery-item.animate-in {
  opacity: 1;
  transform: scale(1);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 138, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.overlay-content p {
  font-size: 14.4px;
  margin: 0;
  padding: 0 20px;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: #ff8a00;
  transform: scale(1.1);
}

.lightbox-caption {
  color: white;
  margin-top: 15px;
  font-size: 16px;
  padding: 0 20px;
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.animate-bounce {
  animation: bounce 2s infinite;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .slide-title {
    font-size: 32px;
  }
  
  .slide-subtitle {
    font-size: 14px;
  }
  
  .slide-description {
    font-size: 13px;
    padding: 25px 30px;
  }
  
  .services-preview {
    gap: 30px;
    max-width: 800px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 28px;
  }
  
  .slide-subtitle {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .slide-description {
    font-size: 12px;
    padding: 20px 25px;
  }
  
  .slide-description p {
    font-size: 12px;
  }
  
  .slide-description li {
    font-size: 12px;
  }
  
  .services-preview {
    gap: 20px;
    max-width: 500px;
    padding: 0 15px;
  }
  
  .service-title {
    font-size: 27.2px;
  }
  
  .service-text {
    font-size: 16.8px;
  }
  
  .service-text strong {
    font-size: 18.4px;
  }
  
  .service-features li {
    font-size: 16.8px;
  }
  
  .learn-more-btn {
    font-size: 16.8px;
  }
  
  .content.grey-container h3 {
    font-size: 24px;
  }
  
  .content.grey-container .font-lg {
    font-size: 19.2px;
  }
  
  .panel-group.accordion-faq .panel-heading a {
    padding: 18px 22px;
    font-size: 16.8px;
  }
  
  .panel-group.accordion-faq .panel-body {
    padding: 22px;
    font-size: 16.8px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
  
  .slider-indicators {
    bottom: 20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 24px;
  }
  
  .slide-subtitle {
    font-size: 12px;
    padding: 6px 12px;
    line-height: 1.3;
  }
  
  .slide-description {
    font-size: 11px;
    padding: 15px 20px;
  }
  
  .slide-description p {
    font-size: 11px;
  }
  
  .slide-description li {
    font-size: 11px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .services-preview {
    max-width: 400px;
    padding: 0 10px;
    gap: 15px;
  }
  
  .service-item {
    padding: 24px;
  }
  
  .service-title {
    font-size: 25.6px;
  }
  
  .service-text {
    font-size: 16px;
  }
  
  .service-text strong {
    font-size: 16px;
  }
  
  .service-features li {
    font-size: 16px;
  }
  
  .learn-more-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  .content.grey-container h3 {
    font-size: 32px;
  }
  
  .content.grey-container .font-lg {
    font-size: 16px;
  }
  
  .panel-group.accordion-faq .panel-heading a {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.3;
  }
  
  .panel-group.accordion-faq .panel-heading a .arrow-down,
  .panel-group.accordion-faq .panel-heading a .arrow-up {
    right: 20px;
    font-size: 18px;
  }
  
  .panel-group.accordion-faq .panel-body {
    padding: 20px;
    font-size: 16px;
  }
  
  .panel-group.accordion-faq .panel {
    margin-bottom: 10px;
  }
  
  .content .col-sm-5,
  .content .col-md-4 {
    padding: 5px;
    margin-bottom: 15px;
  }
  
  .content .img-responsive {
    border-radius: 8px;
  }
  
  .divider-lg,
  .divider-md {
    margin: 20px 0;
  }
}

.services-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.services-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-title {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 22.4px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 32px 24px;
  border: 1px solid #eee;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff3d00);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-header {
  text-align: center;
  margin-bottom: 24px;
}

.service-title {
  font-size: 28.8px;
  font-weight: 700;
  color: #222;
  margin: 8px 0;
  line-height: 1.3;
}

.service-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}

.service-text strong {
  font-size: 16px;
  color: #111;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}


.service-header .icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
  transition: all 0.3s ease;
}

.service-header .icon-circle span {
  font-size: 40px;
  color: white;
  text-shadow: none;
}

.service-header .icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(255, 138, 0, 0.4);
}

.service-text .more-text {
  display: none;
  margin-top: 15px;
  font-size: 19.2px;
  color: #666;
  line-height: 1.6;
  text-decoration: none;
  border: none;
  background: none;
}

.service-text i {
  font-style: italic;
  text-decoration: none;
  border: none;
  background: none;
}

.service-text.expanded .more-text {
  display: block;
}

.service-text.expanded .dots {
  display: none;
}

.service-features {
  margin: 30px 0;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ff8a00;
}

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

.service-features li {
  font-size: 19.2px;
  color: #555;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
  font-size: 22.4px;
  top: -2px;
}

.learn-more-btn {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 19.2px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4);
  color: white;
}

.learn-more-btn:active {
  transform: translateY(-1px);
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-icon span {
  font-size: 40px;
  color: white;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

.service-item h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-item p {
  font-size: 24px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff8a00;
  text-decoration: none;
  font-size: 22.4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #ff6b00;
  transform: translateX(5px);
}

.section-subtitle {
  font-size: 25.6px;
  color: #666;
  margin-top: 20px;
  line-height: 1.5;
}

@media (max-width: 320px) {
  /* Hero Slider 320px */
  .slide-title {
    font-size: 18px;
  }
  
  .slide-subtitle {
    font-size: 9px;
    padding: 4px 8px;
    line-height: 1.3;
  }
  
  .slide-description {
    font-size: 8px;
    padding: 12px 15px;
  }
  
  .slide-description p {
    font-size: 8px;
  }
  
  .slide-description li {
    font-size: 8px;
  }
  
  .cta-button {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .services-preview {
    gap: 12px;
    padding: 0 8px;
    max-width: 280px;
    margin-top: 25px;
  }
  
  .service-item {
    padding: 12px;
    max-width: 260px;
  }
  
  .service-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .service-item p {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .service-link {
    font-size: 11px;
  }
  
  .service-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 12px;
  }
  
  .service-icon .icon {
    font-size: 18px;
  }
  
  .services-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .modern-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .footer-section h4 {
    font-size: 19.2px;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    font-size: 14.4px;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 14.4px;
    margin-bottom: 8px;
  }
  
  .footer-links a {
    font-size: 14.4px;
    padding: 5px 0;
  }
  
  .working-hours p {
    font-size: 14.4px;
    margin-bottom: 6px;
  }
  
  .social-links {
    gap: 10px;
    margin-top: 15px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14.4px;
  }
  
  .footer-bottom {
    padding-top: 15px;
    margin-top: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .copyright p,
  .design-credit p {
    font-size: 12.8px;
  }
  
  .service-title {
    font-size: 22.4px;
  }
  
  .service-text {
    font-size: 15.2px;
  }
  
  .service-text strong {
    font-size: 16px;
  }
  
  .service-features li {
    font-size: 15.2px;
  }
  
  .learn-more-btn {
    font-size: 15.2px;
    padding: 8px 18px;
  }
  
  .content.grey-container h3 {
    font-size: 28.8px;
  }
  
  .content.grey-container .font-lg {
    font-size: 16px;
  }
  
  .panel-group.accordion-faq .panel-heading a {
    padding: 12px 15px;
    font-size: 15.2px;
    line-height: 1.2;
  }
  
  .panel-group.accordion-faq .panel-heading a .arrow-down,
  .panel-group.accordion-faq .panel-heading a .arrow-up {
    right: 15px;
    font-size: 19.2px;
  }
  
  .panel-group.accordion-faq .panel-body {
    padding: 15px;
    font-size: 15.2px;
  }
  
  .panel-group.accordion-faq .panel {
    margin-bottom: 8px;
  }
  
  .content .col-sm-5,
  .content .col-md-4 {
    padding: 3px;
    margin-bottom: 10px;
  }
  
  .content .img-responsive {
    border-radius: 6px;
  }
  
  .divider-lg,
  .divider-md {
    margin: 15px 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 5px;
  }
  
  .gallery-item {
    margin-bottom: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .services-preview {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .service-item {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .service-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .service-item p {
    font-size: 14.4px;
    line-height: 1.4;
  }
  
  .rates-controls {
    padding: 8px;
    gap: 10px;
  }
  
  .rates-search-input,
  .category-filter,
  .price-range-filter {
    padding: 8px 10px;
    font-size: 16px;
  }
  
  .rate-service h4 {
    font-size: 16px;
  }
  
  .rate-details p {
    font-size: 15.2px;
  }
  
  .price-amount {
    font-size: 24px;
  }
  
  .disclaimer-box {
    padding: 10px;
  }
  
  .disclaimer-box p {
    font-size: 16px;
  }
  
  .contact-form-container {
    padding: 10px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .submit-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .contact-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .contact-icon {
    font-size: 24px;
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .modern-card {
    margin-bottom: 15px;
  }
  
  .service-header {
    padding: 15px 15px 10px;
  }
  
  .service-content {
    padding: 0 15px 15px;
  }
  
  .hero-slider .slide-content {
    padding: 20px 15px;
  }
  
  .slide-title {
    line-height: 1.1;
    margin-bottom: 10px;
  }
  
  .slide-subtitle {
    margin-bottom: 15px;
  }
  
  .slide-description {
    margin-bottom: 20px;
  }
  
  .content {
    padding: 20px 10px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .navbar-phone {
    font-size: 12.8px;
  }
  
  .navbar-phone strong {
    font-size: 14.4px;
  }
  
  .navbar {
    padding: 5px 0;
  }
  
  .navbar-brand {
    font-size: 19.2px;
  }
  
  .navbar-nav > li > a {
    padding: 8px 6px;
    font-size: 12.8px;
  }
  
  .navbar-toggle {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .hero-slider {
    margin-top: 60px;
  }
  
  .modern-btn {
    padding: 8px 16px;
    font-size: 15.2px;
  }
  
  .clear-filters-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
    .service-item h4 {
    font-size: 25.6px;
  }
  
  .service-item p {
    font-size: 16px;
  }
  
  .service-link {
    font-size: 16.8px;
  }
  
  .section-subtitle {
    font-size: 19.2px;
  }
  
  .services-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .service-text {
    font-size: 16.8px;
  }
  
  .service-text strong {
    font-size: 18.4px;
  }
  
  .service-features {
    padding: 12px;
  }
  
  .service-features li {
    font-size: 15.2px;
  }
  
  .learn-more-btn {
    font-size: 15.2px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .services-preview {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .service-item {
    padding: 30px 25px;
  }
  
  .service-item h4 {
    font-size: 30.4px;
  }
  
  .service-item p {
    font-size: 14.8px;
  }
  
  .service-link {
    font-size: 19.2px;
  }
  
  .section-subtitle {
    font-size: 22.4px;
  }
}

@media (max-width: 480px) {
  .services-preview {
    gap: 20px;
    margin-top: 30px;
  }
  
  .service-item {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .service-icon span {
    font-size: 32px;
  }
  
  .service-item h4 {
    font-size: 27.2px;
  }
  
  .service-item p {
    font-size: 19.2px;
  }
  
  .service-link {
    font-size: 16px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
}

  @media (max-width: 1024px) {
  .services-section {
    padding: 100px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
  
  .services-title {
    font-size: 44.8px;
  }
  
  .section-subtitle {
    font-size: 19.2px;
    margin-bottom: 50px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px;
  }
  
  .service-header {
    padding: 30px 30px 20px;
  }
  
  .service-content {
    padding: 0 30px 30px;
  }
  
  .service-title {
    font-size: 28.8px;
  }
  
  .service-text {
    font-size: 19.2px;
  }
  
  .service-text strong {
    font-size: 18px;
  }
  
  .service-features {
    padding: 20px;
  }
  
  .service-features li {
    font-size: 16px;
  }
  
  .learn-more-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-title {
    font-size: 24px;
  }
  
  .services-grid {
    gap: 20px;
    margin-top: 30px;
  }
  
  .service-header {
    padding: 20px 20px 15px;
  }
  
  .service-content {
    padding: 0 20px 20px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .service-text {
    font-size: 16px;
  }
  
  .service-text strong {
    font-size: 19.2px;
  }
  
  .service-features {
    padding: 15px;
  }
  
  .service-features li {
    font-size: 16px;
  }
  
  .learn-more-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

#hamburger-btn.active {
  transform: rotate(90deg);
}

#main-menu.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.cta-button:focus,
.nav-btn:focus,
.indicator:focus,
.service-link:focus {
  outline: 2px solid #ff8a00;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .slide-title,
  .slide-subtitle {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8);
  }
  
  .cta-button {
    border: 2px solid white;
  }
}

  .contact-info {
  padding: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

.contact-details h4 {
  margin: 0 0 5px 0;
  color: #2b2b2b;
  font-size: 16px;
}

.contact-details p {
  margin: 0;
  color: #666;
}

.contact-details a {
  color: #ff8a00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #ff6b00;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 138, 0, 0.1);
}

.contact-form-container h4 {
  margin-bottom: 15px;
  color: #2b2b2b;
  font-size: 28.8px;
  font-weight: 700;
  text-align: center;
}

.form-description {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modern-contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group.floating-label {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2b2b2b;
  font-weight: 600;
  font-size: 14.4px;
  transition: all 0.3s ease;
}

  .floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
  margin: 0;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label,
.floating-label select:focus + label,
.floating-label select:not([value=""]) + label {
  top: -8px;
  left: 10px;
  font-size: 12.8px;
  color: #ff8a00;
  font-weight: 600;
  background: white;
  padding: 0 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  padding: 18px 15px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
  transform: translateY(-1px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 12.8px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
  padding-left: 5px;
}

.floating-label .error-message {
  position: absolute;
  bottom: -20px;
  left: 15px;
  font-size: 12px;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14.4px;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
}

.submit-btn {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn .btn-text {
  transition: opacity 0.3s ease;
}

.submit-btn .btn-loading {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  display: flex;
}

.submit-btn.loading .btn-icon {
  transform: translateX(20px);
  opacity: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-spinner {
  animation: spin 1s linear infinite;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.google-map-big {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .google-map-big {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 15px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

  .modern-card {
  background: white;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.service-header {
  padding: 25px 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-header:hover {
  background: #f8f9fa;
}

.service-content {
  padding: 0 25px 25px;
}

.service-features {
  margin: 20px 0;
}

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

.service-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
}

.service-title {
  font-size: 28.8px;
  font-weight: 700;
  color: #2b2b2b;
  margin: 15px 0 10px 0;
  line-height: 1.3;
}

.service-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.service-text strong {
  font-size: 19.2px;
  color: #2b2b2b;
}

.service-text .more-text {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.service-text.show-more .more-text {
  display: block;
}

.service-text.show-more .dots {
  display: none;
}

.learn-more-btn {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
}

.modern-btn {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 138, 0, 0.3);
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.4);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8a00 100%);
}

.modern-btn i {
  transition: transform 0.3s ease;
}

/* Rates Page Styles */
.rates-disclaimer {
  margin: 32px 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.1);
}

.disclaimer-box i {
  color: #856404;
  font-size: 24px;
  flex-shrink: 0;
}

.disclaimer-box p {
  margin: 0;
  color: #856404;
  font-size: 18px;
  line-height: 1.5;
}

.rates-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-container {
  position: relative;
}

.rates-search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 20px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.rates-search-input:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
  background: white;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 19.2px;
}

.category-filter,
.price-range-filter {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 20px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-filter:focus,
.price-range-filter:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.1);
}

.price-range-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 19.2px;
}

.modern-pricing-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 32px 0;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-cell {
  padding: 20px 15px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-size: 18px;
}

.header-cell:last-child {
  border-right: none;
}

.table-body {
  max-height: 600px;
  overflow-y: auto;
  display: block;
}

.rate-item {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  background: white;
}

.rate-item:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rate-item.hidden {
  display: none !important;
}

.rate-service {
  flex: 2;
  padding: 20px 15px;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rate-details {
  flex: 2;
  padding: 20px 15px;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rate-price {
  flex: 1;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.rate-service h4 {
  margin: 0 0 8px 0;
  color: #2b2b2b;
  font-size: 22.4px;
  font-weight: 600;
  line-height: 1.4;
}

.rate-category {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.rate-details p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.rate-price {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #ff8a00;
  display: block;
}

.price-currency {
  font-size: 19.2px;
  color: #666;
  font-weight: 500;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.no-results h3 {
  margin: 0 0 10px 0;
  color: #999;
}

.no-results p {
  margin: 0;
  font-size: 14.4px;
}

.results-counter {
  text-align: center;
  margin: 16px 0;
  color: #666;
  font-size: 14.4px;
}

.results-counter strong {
  color: #ff8a00;
}

@media (max-width: 1024px) {
  .rates-controls {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .rate-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .rates-controls {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  
  .table-header {
    grid-template-columns: 1fr;
    display: none;
  }
  
  .rate-item {
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .rate-service,
  .rate-details,
  .rate-price {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px;
  }
  
  .rate-price {
    border-bottom: none;
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
    color: white;
    border-radius: 0 0 10px 10px;
  }
  
  .rate-price .price-amount {
    color: white;
  }
  
  .rate-price .price-currency {
    color: rgba(255,255,255,0.8);
  }
  
  .disclaimer-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .disclaimer-box i {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .rates-controls {
    padding: 10px;
  }
  
  .rates-search-input,
  .category-filter,
  .price-range-filter {
    padding: 10px 12px;
    font-size: 18px;
  }
  
  .rate-service h4 {
    font-size: 18px;
  }
  
  .rate-details p {
    font-size: 16.8px;
  }
  
  .price-amount {
    font-size: 28.8px;
  }
  
  .disclaimer-box {
    padding: 15px;
  }
  
  .disclaimer-box p {
    font-size: 19.2px;
  }
}

.rates-loading {
  text-align: center;
  padding: 40px;
  color: #666;
}

.results-counter {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
  border: 1px solid #e9ecef;
}

.results-counter strong {
  color: #ff8a00;
  font-weight: 700;
}

.rate-item.hidden {
  display: none !important;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
}

.no-results i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 20px;
  display: block;
}

.no-results h3 {
  color: #666;
  margin-bottom: 10px;
  font-size: 24px;
}

.no-results p {
  color: #999;
  font-size: 16px;
}

.clear-filters-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clear-filters-btn:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.clear-filters-btn:active {
  transform: translateY(0);
}

.clear-filters-btn i {
  margin-right: 8px;
}

.content.grey-container h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
}

.content.grey-container .font-lg {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content.grey-container .font-lg strong {
  color: #ff8a00;
  font-weight: 700;
}

.panel-group.accordion-faq {
  margin-top: 32px;
}

.panel-group.accordion-faq .panel {
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: none;
  overflow: hidden;
}

.panel-group.accordion-faq .panel-heading {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 0;
}

.panel-group.accordion-faq .panel-heading a {
  display: block;
  padding: 20px 25px;
  color: #2b2b2b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
}

.panel-group.accordion-faq .panel-heading a:hover {
  background: linear-gradient(135deg, #ff8a00 0%, #ff6b00 100%);
  color: white;
}

.panel-group.accordion-faq .panel-heading a .arrow-down,
.panel-group.accordion-faq .panel-heading a .arrow-up {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #ff8a00;
  transition: all 0.3s ease;
}

.panel-group.accordion-faq .panel-heading a:hover .arrow-down,
.panel-group.accordion-faq .panel-heading a:hover .arrow-up {
  color: white;
}

.panel-group.accordion-faq .panel-heading a .arrow-up {
  display: none;
}

.panel-group.accordion-faq .panel-heading a:not(.collapsed) .arrow-down {
  display: none;
}

.panel-group.accordion-faq .panel-heading a:not(.collapsed) .arrow-up {
  display: block;
}

.panel-group.accordion-faq .panel-body {
  padding: 25px;
  background: white;
  border: none;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.panel-group.accordion-faq .panel-body strong {
  color: #ff8a00;
  font-weight: 700;
}

.content .row {
  margin: 0;
}

.content .col-sm-5,
.content .col-md-4 {
  padding: 10px;
  margin-bottom: 20px;
}

.content .img-responsive {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.content .img-responsive:hover {
  transform: scale(1.05);
}

.divider-lg,
.divider-md {
  margin: 30px 0;
}

.divider-md.visible-xs {
  margin: 20px 0;
}

.rates-loading i {
  font-size: 32px;
  color: #ff8a00;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.category-filter.active,
.price-range-filter.active {
  border-color: #ff8a00;
  background: #fff3e0;
}

.highlight {
  background: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.price-range-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.price-range-indicator.low {
  background: #28a745;
}

.price-range-indicator.medium {
  background: #ffc107;
}

.price-range-indicator.high {
  background: #dc3545;
}

@media print {
  .rates-controls {
    display: none;
  }
  
  .modern-pricing-table {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .rate-item {
    flex-direction: column;
    break-inside: avoid;
  }
  
  .rate-item:hover {
    transform: none;
    box-shadow: none;
  }
  
  .rate-service,
  .rate-details,
  .rate-price {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .rate-price {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-bounce {
    animation: none;
  }
  
  .rates-loading i {
    animation: none;
  }
}
.service-text p .more-text{
  text-decoration: none;
  
}

.modern-footer {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: #ffffff;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}

.modern-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff8a00 0%, #ff6b00 50%, #ff8a00 100%);
}

.footer-main {
	padding: 60px 0 40px;
}

.footer-section {
	margin-bottom: 40px;
}

.footer-logo h3 {
	color: #ff8a00;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-logo p {
	color: #bdc3c7;
	font-size: 16px;
	margin-bottom: 20px;
}

.footer-description p {
	color: #ecf0f1;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
}

.footer-contact {
	margin-top: 20px;
}

.footer-contact .contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	color: #ecf0f1;
	font-size: 16px;
}

.footer-contact .contact-item i {
	color: #ff8a00;
	font-size: 19.2px;
	margin-right: 12px;
	width: 20px;
	text-align: center;
}

.footer-section h4 {
	color: #ff8a00;
	font-size: 22.4px;
	font-weight: 600;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	display: block;
	padding: 5px 0;
}

.footer-links a:hover {
	color: #ff8a00;
	padding-left: 8px;
	transform: translateX(5px);
}

.working-hours {
	margin-bottom: 30px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-item.emergency {
	background: rgba(255, 138, 0, 0.1);
	padding: 15px;
	border-radius: 8px;
	margin-top: 10px;
	border: 1px solid rgba(255, 138, 0, 0.3);
}

.hours-item .day {
	color: #ecf0f1;
	font-weight: 500;
}

.hours-item .time {
	color: #ff8a00;
	font-weight: 600;
}

.emergency-contact {
	background: rgba(231, 76, 60, 0.1);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(231, 76, 60, 0.3);
	text-align: center;
}

.emergency-contact h5 {
	color: #e74c3c;
	font-size: 19.2px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.emergency-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #ffffff;
	padding: 15px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.emergency-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.emergency-btn i {
	margin-right: 8px;
	font-size: 19.2px;
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
	color: #bdc3c7;
	font-size: 16px;
	margin: 0;
}

.footer-social {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 19.2px;
}

.social-link.facebook {
	background: #3b5998;
	color: #ffffff;
}

.social-link.youtube {
	background: #ff0000;
	color: #ffffff;
}

.social-link.google {
	background: #dd4b39;
	color: #ffffff;
}

.social-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.footer-main {
		padding: 40px 0 30px;
	}
	
	.footer-logo h3 {
		font-size: 28.8px;
	}
	
	.footer-logo p {
		font-size: 16px;
	}
	
	.footer-description p {
		font-size: 15.2px;
	}
	
	.footer-section h4 {
		font-size: 19.2px;
		margin-bottom: 20px;
	}
	
	.footer-links a {
		font-size: 15.2px;
	}
	
	.footer-contact .contact-item {
		font-size: 15.2px;
	}
	
	.emergency-contact h5 {
		font-size: 16px;
	}
	
	.emergency-btn {
		padding: 12px 20px;
		font-size: 16px;
	}
	
	.footer-social {
		justify-content: center;
		margin-top: 20px;
	}
	
	.copyright {
		text-align: center;
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.footer-main {
		padding: 30px 0 20px;
	}
	
	.footer-logo h3 {
		font-size: 25.6px;
	}
	
	.footer-section {
		margin-bottom: 30px;
	}
	
	.footer-section h4 {
		font-size: 16px;
		margin-bottom: 15px;
	}
	
	.working-hours .hours-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.emergency-contact {
		padding: 15px;
	}
	
	.emergency-btn {
		padding: 10px 18px;
		font-size: 15.2px;
	}
	
	.social-link {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
}

@media (max-width: 320px) {
	.footer-logo h3 {
		font-size: 22.4px;
	}
	
	.footer-logo p {
		font-size: 14.4px;
	}
	
	.footer-description p {
		font-size: 14.4px;
	}
	
	.footer-section h4 {
		font-size: 16px;
	}
	
	.footer-links a {
		font-size: 14.4px;
	}
	
	.footer-contact .contact-item {
		font-size: 14.4px;
	}
	
	.emergency-contact h5 {
		font-size: 16px;
	}
	
	.emergency-btn {
		padding: 8px 15px;
		font-size: 14.4px;
	}
	
	.social-link {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
  
  .btn, .modern-btn, .submit-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .btn, .modern-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  input, textarea, select {
    font-size: 16px; 
  }
}
