/* Container */
.container {
  max-width: 1440px;
  margin: auto;
  padding: 0px 20px;
}

.hero-carousel-container {
  position: absolute;
  inset: 0;
}

/* Header */
.header {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo-img {
  width: 120px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Header Button */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-action-btn {
  background: linear-gradient(45deg, #f15922, #ff7a50);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 89, 34, 0.3);
}

.call-action-btn:hover {
  background: linear-gradient(45deg, #e14a1a, #f15922);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 89, 34, 0.4);
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffd700;
}

.slide-1 .image {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: -10;
}

.hero-desktop .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.products .container {
  padding-top: 60px;
}

.other-service-1 .container {
  padding-top: 60px;
}

.hero-desktop .title,
.hero-mobile .title {
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.hero-desktop .subtitle,
.hero-mobile .subtitle {
  color: #f7fafc;
  font-weight: bold;
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.desktop-access-promo {
  display: block;
}

.mobile-access-promo {
  display: none;
}

.hero-desktop .title,
.hero-desktop .subtitle {
  text-align: left;
}

@media (min-width: 1200px) {}

.subtitle-highlight {
  color: #ffd700;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 2rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-desktop {
  position: relative;
  background-image: url("assets/carousel-bg-desktop.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.hero-mobile {
  display: none;
}

.slide-1 .promotion-item {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #ffd700;
}

.slide-1 .promotion-item .number {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #1e212b;
  border: 3px solid #ffffff;
}

.slide-1 .promotion-item .content h4 {
  color: #1e212b;
  background: linear-gradient(45deg, #f15922, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-1 .promotion-item .content p {
  color: #4a5568;
}

.promotion-list {
  color: #ffffff;
  /* margin-left: auto; */
  /* margin-right: auto; */
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  list-style: none;
  padding: 20px;
  margin-top: clamp(16px, 4vw, 30px);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 10px;
}

@media (min-width: 1200px) {
  .promotion-list {
    margin-left: 0;
    margin-right: initial;
  }
}

@media (max-width: 576px) {
  .promotion-list {
    padding: 12px;
    margin-top: 12px;
    font-size: 1rem;
  }
}

.promotion-list li {
  position: relative;
  padding-left: clamp(30px, 7vw, 50px);
  line-height: 1.7;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.promotion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ffd700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: bold;
  width: clamp(22px, 5vw, 35px);
  height: clamp(22px, 5vw, 35px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-service-1 .container {
  display: flex;
  gap: 30px;
}

@media (max-width: 767px) {
  .other-service-1 .container {
    display: block;
    gap: 0;
    padding-top: 30px
  }

  .products .container {
    padding-top: 30px;
    padding-bottom: 0px
  }

  .service-desktop-flex {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .service-desktop-flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}

.other-service-1 .content {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.other-service-1 img {
  width: 60%;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .other-service-1 img {
    width: 100%;
  }
}

.white-content-title {
  color: #f15922;
  font-weight: bold;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.white-content-subtitle {
  color: #f15922;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.gift-description {
  color: #666;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.5;
  margin: 15px 0 20px 0;
  font-weight: 500;
}

.gift-promo-section {
  position: relative;
  background-image: url("assets/gift.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gift-promo-section .container {
  display: flex;
  align-items: center;
  min-height: 300px;
}

.gift-promo-section .content {
  max-width: 50%;
  text-align: left;
}

.mobile-break {
  display: none;
}

.desktop-dash {
  display: inline;
}

.slick-list {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

@media (max-width: 768px) {
  .gift-promo-section {
    background-image: url("assets/gift-mobile.png");
    background-position: center bottom;
    background-size: 80%;
    padding: 60px 0 120px 0;
  }

  .gift-promo-section .content {
    max-width: 100%;
    text-align: left;
  }

  .mobile-break {
    display: inline;
  }

  .desktop-dash {
    display: none;
  }

  .gift-promo-section .white-content-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .gift-promo-section .gift-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin: 20px 0;
  }


}

.other-service-list {
  color: #1e212b;
  list-style: none;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 10px;
}

.other-service-list li {
  position: relative;
  padding-left: 40px;
  /* line-height: 1.7; */
  /* font-weight: 600; */
  font-size: 1.2rem;
  font-weight: 500;
}

.other-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f15922;
  font-size: 1.3rem;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  flex: 1;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  margin: 0px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #f15922;
}

.product-item .product-image {
  padding: 10px;
}

.product-item .product-content {
  padding: 20px;
  background-color: #ffa889;
  border-radius: 0px 0px 10px 10px;
}

.product-item .product-content .product-name,
.footer-logo-sub {
  font-weight: bold;
  color: #1e212b;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.product-item img {
  border-radius: 20px;
}

.product-icon {
  width: 24px;
  height: 24px;
}

.product-details {
  display: flex;
  gap: 10px;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(0, 0, 0, 0.73);
}

.product-details-list {
  margin-top: 16px;
}

.footer-section {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-dash {
  display: inline;
}

.mobile-title-break br {
  display: none;
}

@media (max-width: 576px) {
  .desktop-dash {
    display: none;
  }

  .mobile-title-break br {
    display: inline;
  }

  .desktop-access-promo {
    display: none;
  }

  .mobile-access-promo {
    display: block;
    padding-top: 20px !important;
  }

  .mobile-access-promo .content {
    padding: 20px !important;
  }

  .mobile-access-promo .white-content-title {
    font-size: 1.5rem !important;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .mobile-access-promo .gift-description {
    font-size: 0.95rem !important;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #666;
  }

  .mobile-access-promo .call-action-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 0 !important;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .hero-mobile .title {
    font-size: 1.8rem;
  }

  .hero-mobile .subtitle {
    font-size: 1.2rem;
  }

  .hero-mobile .container {
    padding-top: 30px;
    padding-bottom: 0px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom {
  margin-top: 20px;
  padding: 10px 0px;
  border-top: 1px solid #eee;
  color: rgba(0, 0, 0, 0.73);
}

.footer-info {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bold {
  font-weight: bold;
}

.mobile-image {
  display: none;
}

.desktop-image {
  display: block;
}

@media (max-width: 900px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .product-list {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }

  .desktop-access-promo {
    display: none;
  }

  .mobile-access-promo {
    display: block;
    padding-top: 30px !important;
  }

  .mobile-access-promo .content {
    padding: 30px 25px !important;
  }

  .mobile-access-promo .white-content-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f15922;
  }

  .mobile-access-promo .gift-description {
    font-size: 1.1rem !important;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #555;
  }

  .mobile-access-promo .call-action-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin: 0 !important;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
}

.modal-header {
  background: linear-gradient(135deg, #f15922, #ff7a50);
  color: white;
  padding: 20px 25px;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(90deg);
}

.modal-form {
  padding: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f15922;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(241, 89, 34, 0.1);
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel {
  background: #e2e8f0;
  color: #4a5568;
}

.btn-cancel:hover {
  background: #cbd5e0;
}

.btn-submit {
  background: linear-gradient(45deg, #f15922, #ff7a50);
  color: white;
  box-shadow: 0 4px 15px rgba(241, 89, 34, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(45deg, #e14a1a, #f15922);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 89, 34, 0.4);
}

.success-message {
  text-align: center;
  padding: 40px 25px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.success-message h3 {
  color: #2d3748;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
}

.success-message p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .modal-form {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.float-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.float-btn:hover::before {
  width: 100%;
  height: 100%;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.float-btn:active {
  transform: translateY(-1px);
}

/* Zalo Button */
.zalo-btn {
  background: #0068FF;
  color: white;
}

.zalo-btn:hover {
  background: #0052CC;
  color: white;
}

/* Facebook Button */
.facebook-btn {
  background: #1877F2;
  color: white;
}

.facebook-btn:hover {
  background: #166FE5;
  color: white;
}

/* Hotline Button */
.hotline-btn {
  background: #25D366;
  color: white;
  animation: pulse 2s infinite;
}

.hotline-btn:hover {
  background: #20BA5A;
  color: white;
  animation: none;
}

/* Pulse Animation for Hotline Button */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .float-btn {
    width: 55px;
    height: 55px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }
}