.main-wrap{
	background: url(../images/contact-bg.webp);
    padding-bottom:0px;
}

    .contact-section {
            display: flex;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 50px;
            padding-bottom:180px;
        }

        .contact-container {
            max-width: 1500px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            position: relative;
            z-index: 2;
            padding-left:20px;
        }

        .contact-content {
            color: white;
            animation: contact-slideInLeft 1s ease-out;
            max-width:650px;
        }
         /* Animations */
        @keyframes contact-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes contact-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            line-height: 1.2;
            animation: contact-fadeInUp 1s ease-out 0.2s both;
        }

        .contact-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.9;
            animation: contact-fadeInUp 1s ease-out 0.4s both;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1rem 0;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            animation: contact-fadeInUp 1s ease-out calc(0.6s + var(--delay, 0s)) both;
        }

        .contact-item:hover {
            transform: translateX(10px);
            border-bottom-color: rgba(255, 255, 255, 0.6);
        }

        .contact-item:nth-child(1) { --delay: 0s; }
        .contact-item:nth-child(2) { --delay: 0.2s; }
        .contact-item:nth-child(3) { --delay: 0.4s; }

        .contact-icon {
            width: 24px;
            height: 24px;
            font-size: 1.5rem;
            color: #fff;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            color: #fff;
            transform: scale(1.1);
        }

        .contact-text {
            font-size: 1.1rem;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            color: #fff;
            text-decoration: underline;
        }

        .contact-footer {
            font-size: 1rem;
            line-height: 1.5;
            opacity: 0.9;
            color:#fff;
            margin-top: 65px;
            animation: contact-fadeInUp 1s ease-out 1.2s both;
        }



      
        @media (max-width: 1024px) {
            .contact-container {
                gap: 3rem;
            }
            
            .contact-title {
                font-size: 3rem;
            }
            
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 1.5rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .contact-title {
                font-size: 2.5rem;
            }
            
            .contact-description {
                font-size: 1rem;
            }
            
            .contact-item {
                justify-content: center;
            }
            
        
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 1rem;
            }
            
            .contact-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .contact-description {
                font-size: 0.9rem;
                margin-bottom: 2rem;
            }
            
            .contact-item {
                gap: 1rem;
                padding: 0.8rem 0;
            }
            
            .contact-icon {
                font-size: 1.2rem;
            }
            
            .contact-text {
                font-size: 1rem;
            }
            
            
        }




.contact-faq {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 16px;
}

.contact-faq-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

.contact-faq-list {
  width: 100%;
}

.contact-faq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: space-between;
  margin-bottom: 0;
}

.contact-faq-item {
  flex: 1 1 420px;
  min-width: 280px;
  max-width: 48%;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 8px;
  transition: box-shadow 0.25s cubic-bezier(.22,.61,.36,1), transform 0.25s cubic-bezier(.22,.61,.36,1);
  transform: none; 
  cursor: pointer;
}

.contact-faq-item:hover,
.contact-faq-item:focus-within {
  transform: translateY(-4px) scale(1.012);
  z-index: 1;
}

.contact-faq-question {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 12px auto;
  transition: color 0.2s;
}

.contact-faq-bullet {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #000;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 9px;
  display: inline-block;
  transition: background 0.2s;
}


.contact-faq-answer {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
  margin-left: 20px;
  transition: color 0.2s;
}


.contact-faq-divider {
  border-bottom: 2px dotted #333;
  opacity: 0.5;
  margin: 0 0 12px 0;
  width: 100%;
  height: 1px;
}

@media (max-width: 850px) {
  .contact-faq-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-faq-item {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .contact-faq-title {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }
  .contact-faq {
    padding: 16px 4px;
  }
  .contact-faq-answer {
    font-size: 0.97rem;
    margin-left: 16px;
  }
}

.contact-faq-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.23,1.02,.65,1), transform 0.7s cubic-bezier(.23,1.02,.65,1);
}
.contact-faq-animate.contact-faq-inview {
  opacity: 1;
  transform: none;
}

.pdt-contact-container {
            margin: -100px  auto 5%;
        }