/*============= PREMIUM CONTACT CSS AREA ===============*/

/* General Helpers */
.sp-hero {
  padding: 120px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.sp-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.bg-white {
  background-color: #ffffff !important;
}

.section-bg-light {
  background-color: #f8fafc !important;
}

.rounded-24 {
  border-radius: 24px !important;
}

/* Badge Custom */
.badge-custom {
  background: rgba(0, 176, 239, 0.1);
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.badge-custom i {
  font-size: 12px;
}

/* Hero Section */
.premium-contact-hero {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(224, 242, 254, 0.5) 100%);
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--ztc-text-text-2);
  line-height: 1.25;
  font-family: var(--ztc-family-font1);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
}

/* Hero Images Shape */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-image-wrapper img {
  box-shadow: 0 20px 40px rgba(0, 176, 239, 0.12);
  border: 4px solid #ffffff;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(15px);
  animation: floatShape 6s infinite ease-in-out;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(0, 176, 239, 0.2);
  top: -20px;
  left: -20px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: rgba(40, 170, 74, 0.15);
  bottom: -30px;
  right: -20px;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* Breadcrumb Override */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  font-weight: 600;
}

/* Contact Info Cards */
.contact-details-wrapper {
  padding-right: 15px;
}

.contact-info-card-link {
  text-decoration: none !important;
  display: block;
}

.contact-info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0, 176, 239, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 176, 239, 0.08);
  border-color: rgba(0, 176, 239, 0.2);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 176, 239, 0.08);
  color: var(--ztc-text-text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: var(--ztc-text-text-4);
  color: #ffffff;
  transform: scale(1.08);
}

.contact-info-content h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ztc-text-text-2);
  margin-bottom: 6px;
  font-family: var(--ztc-family-font1);
}

.contact-info-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 24px;
  border: 1px solid rgba(0, 176, 239, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-label-custom {
  font-family: var(--ztc-family-font1);
  font-weight: 700;
  color: var(--ztc-text-text-2);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.form-input-custom {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--ztc-family-font1);
  font-size: 15px;
  color: var(--ztc-text-text-2);
  background-color: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-custom:focus {
  background-color: #ffffff;
  border-color: var(--ztc-text-text-4);
  box-shadow: 0 0 0 4px rgba(0, 176, 239, 0.12);
}

.textarea-custom {
  resize: none;
}

/* Map Wrapper */
.map-wrapper {
  overflow: hidden;
  line-height: 0;
}

.map-wrapper iframe {
  filter: grayscale(0.1) contrast(1.1);
}
