/* ========================================= */
/* GLOBAL */
/* ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================= */
/* SECTION */
/* ========================================= */

.notification-service-section {
  width: 100%;

  padding: 100px 90px;

  background:
    linear-gradient(
      180deg,
      #f5f6f8 0%,
      #eceef2 100%
    );

  overflow: hidden;
}

.notification-service-wrapper {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(14px);

  border-radius: 34px;

  overflow: hidden;

  display: flex;
  align-items: stretch;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.06);

  animation:
    fadeUp 0.9s ease;
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.notification-image {
  width: 390px;

  flex-shrink: 0;

  overflow: hidden;

  position: relative;
}

.notification-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.18) 100%
    );

  pointer-events: none;
}

.notification-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transform: scale(1);

  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* image hover */

.notification-service-wrapper:hover .notification-image img {
  transform: scale(1.08);
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.notification-content {
  flex: 1;

  padding: 70px;

  position: relative;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.notification-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;

  letter-spacing: -1px;

  color: #10264a;

  margin-bottom: 48px;

  position: relative;

  font-family: Arial, sans-serif;
}

.notification-title::after {
  content: "";

  width: 70px;
  height: 5px;

  background: #ec0016;

  border-radius: 100px;

  position: absolute;

  left: 0;
  bottom: -18px;

  animation:
    lineGrow 1s ease;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.notification-text {
  font-size: 19px;
  line-height: 1.9;

  color: #394458;

  margin-bottom: 12px;

  max-width: 90%;

  font-family: Arial, sans-serif;

  animation:
    fadeUp 1s ease;
}

/* ========================================= */
/* FORM */
/* ========================================= */

.notification-form {
  margin-top: 70px;
}

/* ========================================= */
/* INPUT */
/* ========================================= */

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

.form-group input {
  width: 100%;
  height: 66px;

  border: none;
  outline: none;

  background:
    rgba(255,255,255,0.92);

  border-radius: 18px;

  padding: 0 28px;

  font-size: 19px;
  font-weight: 500;

  color: #10264a;

  box-shadow:
    0 10px 28px rgba(0,0,0,0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;

  font-family: Arial, sans-serif;
}

.form-group input:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.06);
}

.form-group input:focus {
  box-shadow:
    0 0 0 4px rgba(16,38,74,0.08);
}

.form-group input::placeholder {
  color: #5c6477;
}

/* ========================================= */
/* CHECKBOX */
/* ========================================= */

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  cursor: pointer;

  margin-bottom: 44px;
}

.checkbox-wrapper input {
  display: none;
}

.custom-checkbox {
  width: 28px;
  height: 28px;

  border-radius: 8px;

  border: 2px solid #10264a;

  flex-shrink: 0;

  margin-top: 4px;

  position: relative;

  transition:
    all 0.3s ease;
}

/* checked */

.checkbox-wrapper input:checked + .custom-checkbox {
  background: #10264a;

  transform: scale(1.05);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
  content: "";

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #ffffff;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.checkbox-text {
  font-size: 17px;
  line-height: 1.8;

  color: #394458;

  font-family: Arial, sans-serif;
}

.checkbox-text a {
  color: #10264a;

  font-weight: 600;

  transition: opacity 0.3s ease;
}

.checkbox-text a:hover {
  opacity: 0.7;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.subscribe-btn {
  width: 370px;
  max-width: 100%;

  height: 64px;

  border: none;
  cursor: pointer;

  background:
    linear-gradient(
      135deg,
      #ff0019 0%,
      #d80014 100%
    );

  border-radius: 18px;

  color: #ffffff;

  font-size: 20px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;

  box-shadow:
    0 16px 34px rgba(236,0,22,0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.subscribe-btn:hover {
  transform:
    translateY(-4px)
    scale(1.01);

  box-shadow:
    0 22px 42px rgba(236,0,22,0.34);
}

/* ========================================= */
/* REQUIRED */
/* ========================================= */

.required-text {
  margin-top: 28px;

  font-size: 15px;
  font-weight: 500;

  color: #5d6475;

  font-family: Arial, sans-serif;
}

/* ========================================= */
/* MESSAGE */
/* ========================================= */

.form-message {
  margin-top: 26px;

  font-size: 16px;
  font-weight: 700;

  display: none;

  animation:
    fadeUp 0.5s ease;

  font-family: Arial, sans-serif;
}

.form-message.success {
  display: block;

  color: #0c8b38;
}

.form-message.error {
  display: block;

  color: #ec0016;
}

/* ========================================= */
/* BOTTOM */
/* ========================================= */

.unsubscribe-box {
  margin-top: 90px;

  padding-top: 36px;

  border-top:
    1px solid rgba(16,38,74,0.08);
}

.unsubscribe-box p {
  font-size: 18px;
  line-height: 1.8;

  color: #394458;

  margin-bottom: 12px;

  font-family: Arial, sans-serif;
}

.unsubscribe-box a {
  font-size: 18px;
  font-weight: 600;

  color: #10264a;

  transition:
    opacity 0.3s ease;

  font-family: Arial, sans-serif;
}

.unsubscribe-box a:hover {
  opacity: 0.7;
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

@keyframes fadeUp {

  from {
    opacity: 0;

    transform:
      translateY(40px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

@keyframes lineGrow {

  from {
    width: 0;
  }

  to {
    width: 70px;
  }

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1200px) {

  .notification-service-section {
    padding: 80px 60px;
  }

  .notification-content {
    padding: 55px;
  }

  .notification-title {
    font-size: 48px;
  }

}

@media (max-width: 992px) {

  .notification-service-section {
    padding: 70px 40px;
  }

  .notification-service-wrapper {
    flex-direction: column;
  }

  .notification-image {
    width: 100%;
    height: 540px;
  }

  .notification-content {
    padding: 50px 40px;
  }

  .notification-title {
    font-size: 42px;
  }

  .notification-text {
    max-width: 100%;
  }

}

@media (max-width: 768px) {

  .notification-service-section {
    padding: 60px 24px;
  }

  .notification-service-wrapper {
    border-radius: 26px;
  }

  .notification-image {
    height: 420px;
  }

  .notification-content {
    padding: 38px 24px;
  }

  .notification-title {
    font-size: 34px;

    margin-bottom: 40px;
  }

  .notification-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .notification-form {
    margin-top: 50px;
  }

  .form-group input {
    height: 58px;

    font-size: 17px;

    border-radius: 14px;
  }

  .checkbox-text {
    font-size: 15px;
  }

  .subscribe-btn {
    width: 100%;
    height: 58px;

    border-radius: 14px;

    font-size: 18px;
  }

  .unsubscribe-box {
    margin-top: 70px;
  }

}

@media (max-width: 480px) {

  .notification-service-section {
    padding: 50px 18px;
  }

  .notification-service-wrapper {
    border-radius: 20px;
  }

  .notification-image {
    height: 340px;
  }

  .notification-content {
    padding: 30px 18px;
  }

  .notification-title {
    font-size: 28px;
  }

  .notification-title::after {
    width: 55px;
  }

  .notification-text {
    font-size: 15px;
  }

  .checkbox-wrapper {
    gap: 14px;
  }

  .custom-checkbox {
    width: 24px;
    height: 24px;
  }

  .checkbox-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .required-text,
  .unsubscribe-box p,
  .unsubscribe-box a {
    font-size: 15px;
  }

}