/* ============================================
   BOCHI CILACAP - TOS PAGE STYLES
   File: tos-page.css
   ============================================ */

/* TOS Section */
.tos-section {
  padding: 80px 0 60px;
}

/* TOS Header */
.tos-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.tos-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

body.dark-mode .tos-main-title {
  color: #e0e0e0;
}

.tos-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

body.dark-mode .tos-intro {
  color: #b0b0b0;
}

/* TOS Card */
.tos-card {
  background: white;
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid #97c1c0;
  position: relative;
  overflow: hidden;
}

body.dark-mode .tos-card {
  background: #2a2a2a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border-left-color: #b5d4d3;
}

.tos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.dark-mode .tos-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* TOS Card Icon */
.tos-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #97c1c0 0%, #b5d4d3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

body.dark-mode .tos-card-icon {
  background: linear-gradient(135deg, #7fb3b2 0%, #7fb3b2 100%);
}

.tos-card:hover .tos-card-icon {
  transform: rotate(360deg) scale(1.1);
}

.tos-card-icon i {
  font-size: 30px;
  color: white;
}

/* Icon variations */
.tos-card-icon-refund {
  background: linear-gradient(135deg, #FBBD4C 0%, #e9a03d 100%);
}

body.dark-mode .tos-card-icon-refund {
  background: linear-gradient(135deg, #d68910 0%, #ca6f1e 100%);
}

.tos-card-icon-process {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

body.dark-mode .tos-card-icon-process {
  background: linear-gradient(135deg, #2e86c1 0%, #21618c 100%);
}

.tos-card-icon-warning {
  background: linear-gradient(135deg, #F06956 0%, #d45545 100%);
}

body.dark-mode .tos-card-icon-warning {
  background: linear-gradient(135deg, #cb4335 0%, #a93226 100%);
}

.tos-card-icon-check {
  background: linear-gradient(135deg, #97c1c0 0%, #7fb3b2 100%);
}

body.dark-mode .tos-card-icon-check {
  background: linear-gradient(135deg, #17a589 0%, #138d75 100%);
}

.tos-card-icon-info {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

body.dark-mode .tos-card-icon-info {
  background: linear-gradient(135deg, #884ea0 0%, #7d3c98 100%);
}

.tos-card-icon-contact {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

body.dark-mode .tos-card-icon-contact {
  background: linear-gradient(135deg, #2e4053 0%, #273746 100%);
}

/* TOS Section Title */
.tos-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

body.dark-mode .tos-section-title {
  color: #e0e0e0;
}

/* TOS Content */
.tos-content {
  color: #555;
  line-height: 1.8;
}

body.dark-mode .tos-content {
  color: #b0b0b0;
}

.tos-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.tos-content strong {
  color: #333;
  font-weight: 600;
}

body.dark-mode .tos-content strong {
  color: #e0e0e0;
}

/* TOS Lists */
.tos-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.tos-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

body.dark-mode .tos-list li {
  border-bottom-color: #444;
}

.tos-list li:last-child {
  border-bottom: none;
}

.tos-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #97c1c0;
  font-weight: bold;
  font-size: 18px;
}

body.dark-mode .tos-list li:before {
  color: #b5d4d3;
}

/* Numbered List */
.tos-numbered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.tos-numbered-list li {
  padding: 10px 0 10px 40px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  counter-increment: item;
}

body.dark-mode .tos-numbered-list li {
  border-bottom-color: #444;
}

.tos-numbered-list li:last-child {
  border-bottom: none;
}

.tos-numbered-list li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 10px;
  background: #97c1c0;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

body.dark-mode .tos-numbered-list li:before {
  background: #b5d4d3;
}

/* Contact Card Special */
.tos-card-contact {
  background: linear-gradient(135deg, #97c1c0 0%, #b5d4d3 100%);
  border-left: none;
  color: white;
}

body.dark-mode .tos-card-contact {
  background: linear-gradient(135deg, #7fb3b2 0%, #7fb3b2 100%);
}

.tos-card-contact .tos-section-title,
.tos-card-contact .tos-content,
.tos-card-contact .tos-content p,
.tos-card-contact .tos-content strong {
  color: white;
}

.tos-card-contact .tos-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.tos-contact-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.tos-contact-info {
  margin: 25px 0;
}

.tos-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.tos-contact-item:last-child {
  border-bottom: none;
}

.tos-contact-item i {
  font-size: 20px;
  min-width: 25px;
}

.tos-contact-item a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.tos-contact-item a:hover {
  opacity: 0.8;
}

.tos-contact-btn {
  margin-top: 20px;
  background: white !important;
  color: #97c1c0 !important;
}

.tos-contact-btn:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px);
}

/* TOS Footer */
.tos-footer {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-top: 20px;
}

body.dark-mode .tos-footer {
  background: #333;
}

.tos-footer p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

body.dark-mode .tos-footer p {
  color: #b0b0b0;
}

.tos-footer strong {
  color: #97c1c0;
}

body.dark-mode .tos-footer strong {
  color: #b5d4d3;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 768px) {
  .tos-section {
    padding: 60px 0 40px;
  }

  .tos-main-title {
    font-size: 28px;
  }

  .tos-intro {
    font-size: 14px;
  }

  .tos-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .tos-card-icon {
    width: 50px;
    height: 50px;
  }

  .tos-card-icon i {
    font-size: 24px;
  }

  .tos-section-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .tos-content p,
  .tos-list li,
  .tos-numbered-list li {
    font-size: 14px;
  }

  .tos-contact-text {
    font-size: 15px;
  }

  .tos-contact-item {
    font-size: 14px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 480px) {
  .tos-section {
    padding: 50px 0 30px;
  }

  .tos-header {
    margin-bottom: 35px;
  }

  .tos-main-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .tos-intro {
    font-size: 13px;
    padding: 0 10px;
  }

  .tos-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .tos-card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }

  .tos-card-icon i {
    font-size: 22px;
  }

  .tos-section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .tos-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .tos-list li {
    padding: 8px 0 8px 25px;
    font-size: 13px;
  }

  .tos-list li:before {
    font-size: 16px;
    top: 8px;
  }

  .tos-numbered-list li {
    padding: 8px 0 8px 35px;
    font-size: 13px;
  }

  .tos-numbered-list li:before {
    width: 22px;
    height: 22px;
    font-size: 12px;
    top: 8px;
  }

  .tos-contact-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .tos-contact-item {
    padding: 10px 0;
    font-size: 13px;
    gap: 8px;
  }

  .tos-contact-item i {
    font-size: 18px;
    min-width: 22px;
  }

  .tos-contact-btn {
    width: 100%;
    margin-top: 15px;
  }

  .tos-footer {
    padding: 20px 15px;
    margin-top: 15px;
  }

  .tos-footer p {
    font-size: 12px;
  }
}

/* ========================================
   EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
  .tos-main-title {
    font-size: 20px;
  }

  .tos-intro {
    font-size: 12px;
  }

  .tos-card {
    padding: 18px 12px;
  }

  .tos-card-icon {
    width: 40px;
    height: 40px;
  }

  .tos-card-icon i {
    font-size: 20px;
  }

  .tos-section-title {
    font-size: 16px;
  }

  .tos-content p,
  .tos-list li,
  .tos-numbered-list li {
    font-size: 12px;
  }

  .tos-contact-text {
    font-size: 13px;
  }

  .tos-contact-item {
    font-size: 12px;
  }

  .tos-footer p {
    font-size: 11px;
  }
}






