/* Contact Page Styles */


/* Page Header */
.page-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
   background: url(../img/breadcrb.jpg);
  color: #fff;
  padding: 120px 0 80px;
  
  text-align: center;
}

.page-header__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  margin: 0 0.5rem;
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ff6600;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ff6600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}


/* Contact Form */
.contact-form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  height: 100%;
}

.contact-form {
  position: relative;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.required {
  color: #ff4d4f;
  margin-left: 3px;
}

/* Removed icons */
.input-icon {
  display: none !important;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem; /* fixed padding */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
  padding: 1rem; /* clean padding */
}

/* Removed custom dropdown arrow */
select.form-control {
  appearance: auto;
  background-image: none !important;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
  background-color: #fff;
}

.error-message {
  color: #ff4d4f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  min-height: 1.2rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.form-check-label a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-check-label a:hover {
  color: #e65c00;
  text-decoration: underline;
}

.form-submit {
  margin-top: 2rem;
}

.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn--primary:hover .btn-icon {
  transform: translateX(5px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1.5rem;
  background-color: #f0fff4;
  border-radius: 6px;
  border-left: 4px solid #38a169;
}

.form-success i {
  font-size: 3rem;
  color: #38a169;
  margin-bottom: 1rem;
  display: block;
}

.form-success p {
  color: #2f855a;
  margin: 0;
  font-size: 1.05rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
  color: #ff6600;
  font-size: 1.25rem;
}

.contact-info__content h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #333;
}

.contact-info__content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.contact-info__content a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info__content a:hover {
  color: #ff6600;
}



.contact-social {
  background: #f9f9f9;
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-social h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}


/* Centered orange line under heading */
.contact-social h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background-color: #f6a100;
  border-radius: 2px;
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

/* Facebook */
.social-link.facebook {
  background-color: #1877F2;
}
.social-link.facebook:hover {
  box-shadow: 0 0 10px #1877F2;
}

/* Instagram (gradient) */
.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-link.instagram:hover {
  box-shadow: 0 0 10px #e6683c;
}

/* LinkedIn */
.social-link.linkedin {
  background-color: #0A66C2;
}
.social-link.linkedin:hover {
  box-shadow: 0 0 10px #0A66C2;
}



/* Map Section */
.map-section {
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  border: none;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(95%) brightness(95%);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ff6600, #ff8c42);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn--white {
  background: #fff;
  color: #ff6600;
  border: 2px solid #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn i {
  margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .contact-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
  
  .contact-social {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .contact-section {
    padding: 4rem 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn--white,
  .btn--outline-white {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-info__item {
    padding: 1.25rem;
  }
  
  .contact-info__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 1rem;
  }
  
  .map-container {
    height: 350px;
  }
}

/* Form Validation Styles */
.form-control.error {
  border-color: #ff4d4f;
  background-color: #fff9f9;
}

.form-control.valid {
  border-color: #52c41a;
  background-color: #f9fff9;
}



.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width: 35px;
  height:35px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 4px 10px rgba(37,211,102,.3);
  z-index:999;
  transition:var(--transition);
  animation:pulse 2s infinite
}

.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 16px rgba(37,211,102,.4)
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.7)}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}
.back-to-top{
  position:fixed;
  bottom:30px;
  right:100px;
  width:50px;
  height:50px;
  background:var(--color-primary);
  color:#fff;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  z-index:998;
  box-shadow:var(--shadow-md)
}

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

.back-to-top:hover{
  background:var(--color-primary-dark);
  transform:translateY(-3px)
}
/* Loading State */
.btn--loading .btn-text {
  visibility: hidden;
  opacity: 0;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: button-loading-spinner 0.8s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
