/* ---- HERO ---- */
.hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
  background-image: url(../images/banner1.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  margin-top: 28px;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(179.97deg, rgba(26, 115, 232, 0.08) 0%, rgba(2, 22, 49, 0.72) 80%);
  z-index: 0;
}
.hero-title {
  font-size: 96px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 40px;
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 28px 28px 52px;
  position: relative;
}
.form-label-small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 4px;
}
.hero-input {
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: var(--radius-md) !important;
  font-size: 14px;
  color: #18181b;
  padding: 8px 12px;
  min-height: 38px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  background: #fff;
}
.hero-input::placeholder {
  color: #71717a;
}
.btn-request {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 40px;
  border: none;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-request:hover {
  background: linear-gradient(135deg, #0d6efd 0%, #1a73e8 100%);
  color: #fff;
}


/* ---- REDEFINE ---- */
.section-redefine {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.redefine-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.redefine-img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.tag-pill {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #1C2706;
  background: #EDF2FF;
  border-radius: var(--radius-full);
  padding: 6px 16px;
  border: 1px solid #EDF2FF;
}

/* ---- GALLERY / CARE ---- */
.care-section {
  padding: 80px 0;
}

.care-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.care-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.care-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 500px;
}

.care-arrows {
  display: flex;
  gap: 10px;
}

.care-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #FAFAFA;
  background: #FAFAFA;
  cursor: pointer;
  transition: 0.3s;
}

.care-arrows button:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.care-slider {
  overflow: hidden;
}

.care-card {
  border-radius: 16px;
  overflow: hidden;
}

.care-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.care-slider .slick-slide {
  padding: 0 10px;
}

.care-card {
  position: relative;
}

.care-video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 16px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
}

