/* =========================================================
   BulletByte Technologies — Global Stylesheet
   ========================================================= */

/* ---------- Root Colors ---------- */
:root {
  --primary: #000000;
  --secondary: #005C99;
  --accent: #9D2315;
  --light: #FFFFFF;
  --dark: #000000;
  --text-dark: #000000;
}

/* ---------- Base Settings ---------- */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 18px;
  background-color: #fff;
}

/* ---------- Navigation ---------- */
.navbar {
  background-color: var(--primary);
  padding: 0.9rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: #fff !important;
  font-size: 1.5rem;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1.1rem;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

/* ---------- Hero Sections ---------- */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 5rem 1rem;
}

.hero h1,
.hero .display-4,
.hero .display-5 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.7rem;
  opacity: 0.95;
}

/* ---------- Section Titles ---------- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 3px solid var(--secondary);
  display: inline-block;
  margin-bottom: 1.4rem;
}

/* ---------- Cards ---------- */
.service-card,
.package-card,
.tips-card,
.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  padding: 1.8rem;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.service-icon {
  font-size: 2.6rem;
  color: var(--secondary);
}

.price-tag {
  background-color: #f2f2f2;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  color: var(--accent);
  margin: 0.3rem 0 1rem 0;
}

/* ---------- Testimonials ---------- */
.tips-text {
  font-size: 1.2rem;
  font-style: italic;
}

.tips-author {
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.7rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.05rem;
}

footer a:hover {
  color: #fff;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--accent);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
}

/* ---------- Contact Form ---------- */
form label {
  font-weight: 600;
  font-size: 1.1rem;
}

form input,
form select,
form textarea {
  font-size: 1.05rem !important;
  padding: 0.65rem !important;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  font-weight: 600;
  font-size: 1.2rem;
}

.btn-primary:hover {
  background-color: #2385c7 !important;
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 768px) {
  .hero h1,
  .hero .display-4,
  .hero .display-5 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  body {
    font-size: 17px;
  }
}

/* ---------- DO NOT MODIFY: Packages Table Styling (kept exactly) ---------- */
/* The packages table + mobile view have their own embedded CSS in the HTML.
   This external stylesheet intentionally does NOT override them.
*/

/* testominials transform */
/* Slide + Fade Animation */
.fade-card {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-height: 180px;
  color: #ffffff !important;
  font-size: 26px;
}

/* Increase size of tips */
.fade-card h6 {
  font-size: 1.5rem !important;   /* default is 1rem */
  font-weight: 600;               /* optional: make it bolder */
}

.fade-card.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-card.hide {
  opacity: 0;
  transform: translateX(-20px);
}




.testimonial-stars {
  font-size: 1.8rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}



/* =========================================================
   Tips Page — Professional Styling
   ========================================================= */

/* Fade Box for Animated Tip */
#fadeTip {
  background: #0d1117;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  min-height: 150px;
  transition: opacity 0.6s ease, transform 0.6s ease;
  color: #ffffff !important;
  font-size: 1.3rem;
  text-align: center;
}

/* Fade Animations */
#fadeTip.show {
  opacity: 1;
  transform: translateY(0);
}

#fadeTip.hide {
  opacity: 0;
  transform: translateY(10px);
}

/* NEXT TIP BUTTON */
#nextTip,
.next-tip-btn {
  border: 1px solid #00e0ff !important;
  color: #00e0ff !important;
  padding: 10px 24px;
  font-size: 1.2rem;
  border-radius: 8px;
  background: transparent;
  transition: 0.3s ease;
}

#nextTip:hover,
.next-tip-btn:hover {
  background: #00e0ff !important;
  color: #000 !important;
}

/* Search Bar */
#tipSearch {
  background: #0d1117;
  border: 1px solid #1f2937;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 25px;
}

#tipSearch::placeholder {
  color: #9ca3af;
}

/* Tip Grid Cards */
.tip-card {
  background: #111827 !important;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s ease;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-4px);
  border-color: #00e0ff;
}

/* Tip text */
.tip-card p {
  color: #ffffff !important;
  font-size: 1.1rem;
}

/* Tip author */
.tip-card h6 {
  color: #00e0ff !important;
  font-weight: 600;
  margin-top: 12px;
  font-size: 1.1rem;
}



/* Shared base styling */
.contact-btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
  text-decoration: none;
}




/* WhatsApp (dark style) */
.contact-btn.whatsapp {
  background-color: #1EBE5D;   /* deeper green */
  color: #FFFFFF;              /* pure white text */
  border: 2px solid #128C3A;   /* darker green border */
}

.contact-btn.whatsapp:hover {
  background-color: #128C3A;   /* darker hover */
  color: #FFFFFF;
}


/* Text button (WHITE ADA style) */
.contact-btn.textbtn {
  background-color: #0066CC;   /* deeper accessible blue */
  color: #FFFFFF;              /* high contrast */
  border: 2px solid #004C99;   /* darker border */
}

.contact-btn.textbtn:hover {
  background-color: #004C99;   /* darker hover */
  color: #FFFFFF;
}


/* Focus ring for ADA compliance */
.contact-btn:focus {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
}



 /* TExT US DIALOG */
 
/* Matching WhatsApp dialog overlay */
#text-dialog {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  display: none;
  z-index: 9999;
}

/* Matching dialog box */
#text-dialog .dialog-content {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  color: #000000;
  padding: 20px 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
}

/* Matching button styles */
#text-dialog .dialog-btn {
  padding: 10px 18px;
  border-radius: 8px;
  margin: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s ease;
}

/* Confirm (OK) button */
#text-dialog .confirm-btn {
  background-color: ##144FBD;
  color: #000000;
  border: none;
}

#text-dialog .confirm-btn:hover {
  background-color: #00c8d1;
}

/* Cancel button */
#text-dialog .cancel-btn {
  background-color: red;
  color: #ffffff;
  border: 2px solid #000000;

}

#text-dialog .cancel-btn:hover {
  background-color: #ffffff;
  color: #0d1117;
}


/* adding space between buttons */

@media (max-width: 768px) {
  .contact-buttons,
  .contact-btn {
    width: 100%;
	
  }

  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;   /* spacing between buttons */
  }
}



/* High-contrast primary button */
.btn-primary,
.btn-primary:visited {
  color: #FFFFFF;
  background-color: #09222F;   /* dark blue for strong contrast */
  border-color: #09222F;
}

/* Hover / active */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #04131E;
  border-color: #04131E;
}

/* Visible keyboard focus */
.btn-primary:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

/* Keep large font size without inline style */
.book-btn {
  font-size: 19px;
}


/* Tabs – high contrast + visible focus */
.tab-button {
  background-color: #09222F;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 999px; /* pill style, optional */
  cursor: pointer;
}

/* Selected tab state */
.tab-button[aria-selected="true"] {
  background-color: #FFFFFF;
  color: #09222F;
}

/* Hover */
.tab-button:hover {
  filter: brightness(1.1);
}

/* Keyboard focus */
.tab-button:focus-visible {
  outline: 3px solid #FFD54A;  /* strong visible focus */
  outline-offset: 3px;
}


.book-btn {
  font-size: 19px;
}


.btn-primary, .book-btn {
  background-color: #1F5A8A !important;
  color: #ffffff !important;
}