@charset "UTF-8";
/*!
Theme Name: Landing Page MBWS
Theme URI: https://mbws.vn
Author: MBWS
Author URI: https://mbws.vn
Description: Theme landing page trắng dành cho MBWS
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ladingpage-mbws
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Inter", Roboto, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #004080;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

.site-content {
  padding: 0;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.main-navigation a {
  color: #333333;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}
.main-navigation a:hover {
  color: #0066cc;
}
@media (max-width: 767px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
}
.btn-custom {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-custom-primary {
  background-color: #0066cc;
  color: #ffffff;
}
.btn-custom-primary:hover {
  background-color: #004d99;
  color: #ffffff;
}
.btn-custom-secondary {
  background-color: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}
.btn-custom-secondary:hover {
  background-color: #0066cc;
  color: #ffffff;
}
.btn-custom-outline {
  background-color: transparent;
  border: 2px solid #dee2e6;
  color: #333333;
}
.btn-custom-outline:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.card-custom {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card-custom:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card-custom__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-custom__body {
  padding: 20px;
}
.card-custom__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.card-custom__text {
  color: #666666;
  margin-bottom: 20px;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 40px 0 20px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888888;
}

.hero-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.hero-section h1 {
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.25rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 60px 20px;
  }
}

.section {
  padding: 60px 0;
}
.section__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.section__subtitle {
  text-align: center;
  color: #666666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333333;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Inter", Roboto, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control-custom:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.landing-scroll {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.landing-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-section {
  height: 100vh;
  width: auto;
  max-width: 470px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.section-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-hero {
  background: linear-gradient(180deg, #2d8f4e 0%, #1a6b35 50%, #0d4a23 100%);
  color: #ffffff;
}
.section-hero .section-inner {
  justify-content: flex-start;
  gap: 15px;
}
.section-hero .content-box {
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  width: 100%;
  bottom: 100px;
}
.section-hero .content-text .form-check {
  background-color: rgba(0, 0, 0, 0.3137254902);
  padding: 10px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 10px;
  font-size: 12px;
  text-align: left;
  padding-left: 30px;
}
.section-hero .content-text .form-check input {
  font-size: 15px;
}
.section-hero .cta-buttons {
  width: 100%;
}
.section-hero .box-message {
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: center;
  bottom: 50px !important;
}
.section-hero .box-message.active {
  display: flex;
  animation: slideInDown 0.5s ease-out;
}
.section-hero .box-message .box-icon {
  font-size: 2rem;
  color: #fff;
  animation: bounceUpDown 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.section-hero .box-message .box-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.cta-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.btn-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta .btn-icon {
  font-size: 1.25rem;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary-cta {
  background-color: #28a745;
  color: #ffffff;
}
.btn-primary-cta:hover {
  background-color: #1e7e34;
  color: #ffffff;
}

.btn-secondary-cta {
  box-shadow: 0px 4.78px 30.45px 0px rgba(0, 0, 0, 0.87);
  background: linear-gradient(0deg, #ffffff, #ffffff), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.63%, rgba(0, 0, 0, 0.14) 100%);
  padding: 8px 10px;
  color: #4d4d4d;
  font-weight: 600;
}
.btn-secondary-cta.active {
  background: linear-gradient(0deg, #4cb856, #4cb856), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.63%, rgba(0, 0, 0, 0.14) 100%);
  color: #fff;
  box-shadow: 0px 4.78px 30.45px 0px rgba(0, 0, 0, 0.87);
}
.btn-secondary-cta:hover {
  background: linear-gradient(0deg, #4cb856, #4cb856), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.63%, rgba(0, 0, 0, 0.14) 100%);
  color: #fff;
  box-shadow: 0px 4.78px 30.45px 0px rgba(0, 0, 0, 0.87);
}
.btn-secondary-cta .btn-text {
  font-size: 20px;
}

.btn-datepicker {
  position: relative;
  cursor: pointer;
  min-width: 300px;
}
.btn-datepicker input {
  width: 100%;
  background: var(--Background-Default-Default, rgb(255, 255, 255));
  border: 1px solid var(--Border-Default-Default, rgb(217, 217, 217));
  padding: 5px 20px;
  border-radius: 10px;
  text-align: center;
}
.btn-datepicker.date-selected .btn-text {
  font-weight: 600;
}

.btn-upload {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.btn-upload .upload-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: -1;
}
.btn-upload.file-selected .btn-text {
  font-weight: 600;
}

.datepicker {
  z-index: 9999 !important;
  min-width: 300px;
  padding: 15px !important;
  border-radius: 10px !important;
}
.datepicker.datepicker-dropdown {
  margin-top: 10px !important;
}
.datepicker:after, .datepicker:before {
  left: 50% !important;
}
.datepicker .table-condensed {
  width: 100%;
}
.datepicker th,
.datepicker td {
  padding: 10px 8px !important;
  font-size: 17px;
}
.datepicker .datepicker-switch {
  font-size: 16px;
  font-weight: 600;
}
.datepicker .day,
.datepicker .month,
.datepicker .year {
  border-radius: 6px;
}
.datepicker .day:hover,
.datepicker .month:hover,
.datepicker .year:hover {
  background-color: #f0f0f0;
}
.datepicker .day.active,
.datepicker .month.active,
.datepicker .year.active {
  background-color: #28a745 !important;
  color: #fff !important;
}

.section-features {
  background: #ffffff;
}
.section-features .section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}
.section-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .section-features .features-grid {
    grid-template-columns: 1fr;
  }
}
.section-features .feature-item {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.section-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.section-features .feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.section-features h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}
.section-features p {
  color: #666666;
  margin: 0;
}

.section-calendar {
  background: url(../images/bgr-section2.jpg);
  background-size: cover;
  background-position: center;
}
.section-calendar .section-inner {
  padding: 40px 20px;
  gap: 20px;
}
.section-calendar .calendar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section-calendar .calendar-title {
    font-size: 1.25rem;
  }
}
.section-calendar .calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.section-calendar .calendar-item {
  width: calc(25% - 10px);
  border-radius: 6px;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(0deg, #0f6912, #0f6912), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 2px solid rgb(255, 246, 0);
  box-shadow: 0px 2.82px 2.82px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -2.82px 2.96px 0px rgba(0, 0, 0, 0.25) inset;
  transition: all 0.3s ease;
}
.section-calendar .calendar-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #ff0013 0%, #ff0013 100%);
  color: #ffffff;
}
.section-calendar .calendar-item.active {
  transform: scale(1.1);
  background: linear-gradient(180deg, #ff0013 0%, #ff0013 100%);
  border-color: #ffeb3b;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.section-calendar .calendar-item .month-label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0.9;
}
.section-calendar .calendar-item .month-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-calendar .calendar-item .month-number {
    font-size: 2rem;
  }
}
.section-calendar .result-box {
  display: none;
  width: 100%;
}
.section-calendar .result-box .messages-grid {
  width: 100%;
}
.section-calendar .result-box .message-box {
  background-image: url(../images/frame-thongdiep.png);
  background-size: cover;
  background-position: center;
  padding: 30px 10px 10px 10px;
  aspect-ratio: 217/123;
  text-align: center;
  display: none;
  position: relative;
  margin-top: 40px;
}
.section-calendar .result-box .message-box:before {
  content: "Thông điệp";
  background: linear-gradient(0deg, #007404, #007404), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgb(255, 246, 0);
  border-radius: 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}
.section-calendar .result-box .message-box .message-content .message-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-calendar .result-box .message-box .message-content .message-text {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}
.section-calendar .result-box .message-box .message-content .message-text p {
  margin-bottom: 5px;
}
.section-calendar .result-box .message-box .message-content .message-text p:last-child {
  margin-bottom: 0;
}
.section-calendar .btn-xem-ngay {
  display: inline-block;
  background-color: #fff;
  color: #0d4a23;
  padding: 12px 50px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -2px 3.78px 0px rgba(0, 0, 0, 0.25) inset;
  font-weight: 400;
  transition: all 0.3s ease;
}
.section-calendar .btn-xem-ngay:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -2px 3.78px 0px rgba(0, 0, 0, 0.25) inset;
  font-weight: 400;
  color: #ffffff;
}

.section-messages {
  background: linear-gradient(180deg, #4a90e2 0%, #357abd 50%, #2868a8 100%);
}
.section-messages .section-inner {
  padding: 40px 20px;
  gap: 20px;
  overflow-y: auto;
  justify-content: flex-start;
}
.section-messages .messages-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .section-messages .messages-title {
    font-size: 1.25rem;
  }
}
.section-messages .zodiac-info {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.95;
  font-weight: 500;
}
.section-messages .messages-grid {
  display: grid;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 767px) {
  .section-messages .messages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.section-messages .message-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.section-messages .message-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.section-messages .message-box .message-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.section-messages .message-box .message-header .message-month-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}
.section-messages .message-box .message-header .message-month-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #357abd;
}
.section-messages .message-box .message-content {
  flex: 1;
}
.section-messages .message-box .message-content .message-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
  line-height: 1.3;
}
.section-messages .message-box .message-content .message-text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
}
.section-messages .message-box .message-content .message-text p {
  margin-bottom: 5px;
}
.section-messages .message-box .message-content .message-text p:last-child {
  margin-bottom: 0;
}

.section-wp-content {
  background: #f8f9fa;
}
.section-wp-content .section-inner {
  justify-content: flex-start;
  padding-top: 60px;
  overflow-y: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0.7;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.section-messages {
  background: linear-gradient(180deg, #fdd139 0%, #fdba0d 50%, #ffcb11 100%);
}

.share {
  position: relative;
  margin-top: 10px;
}
.share #btn-share {
  width: 100%;
  cursor: pointer;
  border: none;
}
.share .list-share {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 20px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
}
.share .list-share.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}
.share .list-share::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
.share .share-popup-content .share-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-align: center;
}
.share .share-popup-content .share-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
}
.share .share-popup-content .share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #1a1a1a;
  background: #f8f9fa;
  transition: all 0.3s ease;
}
.share .share-popup-content .share-option i {
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}
.share .share-popup-content .share-option span {
  font-size: 0.75rem;
  font-weight: 500;
}
.share .share-popup-content .share-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.share .share-popup-content .share-option:hover i {
  transform: scale(1.1);
}
.share .share-popup-content .share-option[data-platform=facebook]:hover {
  background: #1877f2;
  color: white;
}
.share .share-popup-content .share-option[data-platform=twitter]:hover {
  background: #000000;
  color: white;
}
.share .share-popup-content .share-option[data-platform=instagram]:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: white;
}
.share .share-popup-content .share-option[data-platform=zalo]:hover {
  background: #0068ff;
  color: white;
}
.share .share-popup-content .share-option[data-platform=download]:hover {
  background: #007bff;
  color: white;
}
.share .share-popup-content .share-option[data-platform=copy]:hover {
  background: #28a745;
  color: white;
}/*# sourceMappingURL=style.css.map */