:root{
  --tc-deep:#274D60;
  --tc-sky:#6BA3BE;
  --tc-teal:#0C969C;
  --tc-teal-dark:#0A7075;
  --tc-forest:#032F30;
  --tc-ink:#031716;
  --tc-white:#FFFFFF;
  --tc-accent:#7CFF8A; /* green caret/active line */
}

html { scroll-behavior: smooth; }
body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--tc-forest);
  background:
    radial-gradient(900px circle at 10% 10%, rgba(107,163,190,.18), transparent 60%),
    radial-gradient(900px circle at 90% 20%, rgba(12,150,156,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(107,163,190,.06));
}
img {
  max-width: 100%;
  height: auto;
}
/* Offset for fixed header anchors */
.tc-anchor { scroll-margin-top: 92px; }

/* ===== NAVBAR ===== */
.tc-navbar{
  background: #FFFFFF;
  border-bottom: 1px solid rgba(107,163,190,.22);
}

.tc-logo{
  width: 140px;
  display: block;
}

.main-header .navbar-nav .nav-link{
  color: #0D7075;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .92rem;
  padding: 1.15rem .95rem;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  position: relative;
}
.main-header .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active{
  color: #6BA3BE;
}

/* Right side quick actions */
.tc-actions{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tc-phone{
  color: #0D7075;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.05;
}
.tc-phone small{
  display:block;
  color: #0D7075;
  font-weight: 700;
}
.tc-whatsapp{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #0D7075;
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease;
}
.tc-whatsapp:hover{ transform: translateY(-2px); }

/* ===== HERO ===== */
.tc-hero{
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.tc-hero .main-banner{
  position:absolute;
  inset:0;
  z-index:0;
}
.tc-hero .main-banner img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}
.tc-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(90deg, rgba(3,23,22,.86), rgba(3,23,22,.20));
}
.tc-hero .container{ position:relative; z-index:2; }

.tc-hero-title{
  letter-spacing:-0.02em;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.tc-hero-sub{ color: rgba(255,255,255,.88); }

/* ==============================
   Buttons
   ============================== */
.btn-tc{
  --bs-btn-bg: var(--tc-teal);
  --bs-btn-border-color: var(--tc-teal);
  --bs-btn-hover-bg: var(--tc-teal-dark);
  --bs-btn-hover-border-color: var(--tc-teal-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  box-shadow: 0 14px 30px rgba(12,150,156,.28);
  border-radius: 0.375rem;
  font-weight: 800;
}
.btn-tc-outline{
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.6);
  --bs-btn-hover-bg: rgba(255,255,255,.12);
  --bs-btn-hover-border-color: rgba(255,255,255,.8);
  border-radius: 0.375rem;
  font-weight: 800;
}
.btn-tc-allPackages {
  color: #fff;
}
.btn-tc-allPackages:hover {
  text-decoration: none;
}
.btn-tc-dark {
  --bs-btn-bg: var(--tc-deep);
  --bs-btn-border-color: var(--tc-deep);
  --bs-btn-hover-bg: var(--tc-forest);
  --bs-btn-hover-border-color: var(--tc-forest);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 0.375rem;
  font-weight: 900;
}
.btn-tc-transpatent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  font-size: 16px;
  background: #0C969C;
  color: #FFFFFF;
}
.btn-tc-transpatent:hover {
  background: #0A7075;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3, 23, 22, .1);
}
/* ==============================
   Search
   ============================== */
.quick-trip-finder .trip-finder-backgroud{
  background: rgba(3,47,48,.45);
  border: 1px solid rgba(107,163,190,.25);
}
.quick-trip-finder .input-group-text {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.quick-trip-finder .form-control {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.quick-trip-finder .form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
.quick-trip-finder .custom-package-form-link {
  margin-top: 1rem;
}
.custom-package-form-link p {
  margin-bottom: 0;
}
.quick-trip-finder .custom-package-form-link .tc-link {
  color: rgba(124, 255, 138, 0.95);
  font-weight: 900;
  text-decoration: none;
}
/* Section */
.common-class-space {
  padding: 5rem 0;
}
.small-title-head {
  color: #0A7075;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: .5rem;
}
.section-title-head {
  font-size: 2.5rem;
  color: #274D60;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* ==============================
   Featured Packages
   ============================== */

/* Card shell */
.tc-pack-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,77,96,.10);
  box-shadow: 0 16px 46px rgba(3,47,48,.10);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}

.tc-pack-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(3,47,48,.14);
}

/* Image header */
.tc-pack-media{
  position: relative;
  height: 230px;
  background: #f3f6f7;
}

.tc-pack-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

/* subtle fade like screenshot */
.tc-pack-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,23,22,.00) 40%, rgba(3,23,22,.10) 100%);
  pointer-events:none;
}

/* Difficulty badge (top right) */
.tc-pack-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: .42rem .78rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
  background: var(--tc-teal);
  box-shadow: 0 12px 26px rgba(12,150,156,.25);
}

.tc-pack-badge-dark{ background: #1B7EA3; }
.tc-pack-badge-light{ background: #11A7B0; }

/* Body */
.tc-pack-body{
  padding: 1.55rem 1.55rem 1.6rem;
}

.tc-pack-title{
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 .55rem;
  color: #244A5C;
}

.tc-pack-desc{
  margin: 0 0 1.1rem;
  color: rgba(39,77,96,.70);
  font-weight: 600;
  line-height: 1.45;
}

/* Meta row */
.tc-pack-meta{
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tc-meta-item{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  color: var(--tc-teal-dark);
}

.tc-meta-ic{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(12,150,156,.14);
  border: 1px solid rgba(12,150,156,.22);
  color: var(--tc-teal-dark);
  font-size: .85rem;
}

/* Buttons row */
.tc-pack-actions{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.tc-btn-book{
  background: var(--tc-teal);
  border: 1px solid var(--tc-teal);
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  padding: .75rem 1.25rem;
  box-shadow: 0 14px 28px rgba(12,150,156,.22);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.tc-btn-book:hover{
  background: var(--tc-teal-dark);
  border-color: var(--tc-teal-dark);
  color: #fff;
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.tc-btn-outline{
  background: #fff;
  border: 2px solid var(--tc-teal);
  color: var(--tc-teal-dark);
  font-weight: 900;
  border-radius: 16px;
  padding: .72rem 1.25rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.tc-btn-outline:hover{
  background: rgba(12,150,156,.10);
  color: var(--tc-teal-dark);
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 575.98px){
  .tc-pack-media{ height: 210px; }
  .tc-pack-body{ padding: 1.25rem 1.25rem 1.35rem; }
  .tc-pack-actions .btn{ width: 100%; }
}
/* ==============================
   WHY CHOOSE US (Premium cards)
   ============================== */

.tc-why{
  position: relative;
  background: linear-gradient(180deg, rgba(107,163,190,.14), rgba(12,150,156,.06));
  border-top: 1px solid rgba(39,77,96,.10);
  border-bottom: 1px solid rgba(39,77,96,.10);
}

/* right header mini-stats */
.tc-why-stats{
  display: grid;
  gap: .75rem;
  width: min(360px, 100%);
}
.tc-stat{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 12px 28px rgba(3,47,48,.06);
}
.tc-stat i{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(12,150,156,.14);
  border: 1px solid rgba(12,150,156,.22);
  color: var(--tc-teal-dark);
  font-size: 1.05rem;
}
.tc-stat-title{
  font-weight: 900;
  color: rgba(3,47,48,.88);
  line-height: 1.1;
}
.tc-stat-sub{
  font-weight: 700;
  color: rgba(3,47,48,.55);
  font-size: .9rem;
}

/* cards */
.tc-why-card{
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 14px 40px rgba(3,47,48,.08);
  padding: 1.6rem 1.6rem 1.45rem;
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tc-why-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px circle at 0% 0%, rgba(124,255,138,.18), transparent 55%),
    radial-gradient(420px circle at 100% 20%, rgba(12,150,156,.10), transparent 55%);
  opacity: .55;
  pointer-events:none;
}

.tc-why-card > *{ position:relative; z-index:1; }

.tc-why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(3,47,48,.12);
}

.tc-why-ic{
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  background: rgba(12,150,156,.14);
  border: 1px solid rgba(12,150,156,.22);
  color: var(--tc-teal-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.tc-why-title{
  font-weight: 900;
  color: #244A5C;
  font-size: 1.25rem;
  margin: 0 0 .55rem;
  letter-spacing: -0.01em;
}

.tc-why-desc{
  color: rgba(39,77,96,.72);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 1rem;
}

/* CTA bar */
.tc-why-cta{
  margin-top: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 14px 40px rgba(3,47,48,.08);
  padding: 1.1rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}

.tc-why-cta-left{
  display:flex;
  align-items:flex-start;
  gap: .85rem;
}
.tc-why-cta-left i{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(107,163,190,.16);
  border: 1px solid rgba(107,163,190,.22);
  color: #1B7EA3;
  font-size: 1.05rem;
}
.tc-why-cta-title{
  font-weight: 900;
  color: rgba(3,47,48,.88);
  line-height: 1.15;
}
.tc-why-cta-sub{
  color: rgba(3,47,48,.60);
  font-weight: 700;
  font-size: .95rem;
}

/* responsive CTA stacking */
@media (max-width: 767.98px){
  .tc-why-cta{
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-why-cta-right .btn{
    width: 100%;
  }
}

/*====destination=======*/
.tc-destinations-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,77,96,.16);
  box-shadow: 0 14px 40px rgba(3,47,48,.10);
  min-height: 240px;
}
.tc-destinations-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,23,22,.10), rgba(3,23,22,.78));
}
.tc-destinations-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.tc-destinations-item:hover img {
  transform: scale(1.08);
}
.tc-destinations-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.2rem 1.1rem;
  color: #FFFFFF;
  z-index: 2;
}
.tc-destinations-content .tc-destinations-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}


/* ==============================
   TESTIMONIALS (No box-over-box)
   ============================== */

.tc-testimonials{ position: relative; }

/* Wrapper stays as the main card */
.tc-testimonial-wrap{
  background:
    radial-gradient(700px circle at 10% 10%, rgba(107,163,190,.20), transparent 55%),
    radial-gradient(700px circle at 90% 20%, rgba(12,150,156,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  border: 1px solid rgba(39,77,96,.14);
  border-radius: 24px;
  box-shadow: 0 16px 52px rgba(3,47,48,.10);
  overflow: hidden;
  position: relative;
}

/* Remove inner "second box" look */
.tc-tm-card{
  background: transparent;       /* was white */
  border: 0;                     /* remove border */
  box-shadow: none;              /* remove shadow */
  border-radius: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
}

/* Add a subtle separator so it still feels structured */
.tc-tm-card::after{
  content:"";
  display:block;
  margin-top: 1.15rem;
  height: 1px;
  background: rgba(39,77,96,.10);
}

/* Header row */
.tc-tm-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tc-tm-person{
  display:flex;
  align-items:center;
  gap: .9rem;
}

.tc-tm-avatar{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(12,150,156,.35);
  box-shadow: 0 10px 26px rgba(3,47,48,.10);
}

.tc-tm-name{
  color: #274D60;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.15;
}

.tc-tm-place{
  color: rgba(39,77,96,.70);
  font-weight: 700;
  font-size: .92rem;
}

/* Rating */
.tc-tm-rating{
  display:flex;
  gap: .25rem;
  color: rgba(124,255,138,.95);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.tc-tm-rating i{ font-size: .95rem; }

/* Quote body */
.tc-tm-body{
  display:flex;
  align-items:flex-start;
  gap: .85rem;
  padding-top: .25rem;
}

.tc-tm-quote{
  font-size: 2rem;
  color: rgba(12,150,156,.35);
  transform: translateY(-2px);
}

.tc-tm-text{
  font-weight: 750;
  color: rgba(3,47,48,.78);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 70ch;
}

/* Controls: premium glass, show only on hover (desktop) */
#tcTestimonials .tc-tm-control{
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(.96);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .18s ease, border-color .18s ease;
}

#tcTestimonials .carousel-control-prev.tc-tm-control{
  left: 14px;
  transform: translateY(-50%) translateX(-8px) scale(.96);
}
#tcTestimonials .carousel-control-next.tc-tm-control{
  right: 14px;
  transform: translateY(-50%) translateX(8px) scale(.96);
}

/* reveal on hover + focus */
.tc-testimonial-wrap:hover #tcTestimonials .tc-tm-control,
#tcTestimonials:focus-within .tc-tm-control{
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}

#tcTestimonials .tc-tm-control:hover{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.30);
}

#tcTestimonials .carousel-control-prev-icon,
#tcTestimonials .carousel-control-next-icon{
  filter: invert(1);
  opacity: .95;
}

/* Dots */
#tcTestimonials .tc-tm-dots{
  gap: .45rem;
}
#tcTestimonials .tc-tm-dots [data-bs-target]{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(39,77,96,.28);
  opacity: 1;
  border: 0;
}
#tcTestimonials .tc-tm-dots .active{
  width: 24px;
  background: rgba(12,150,156,.85);
}

/* Mobile layout */
@media (max-width: 767.98px){
  .tc-tm-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-tm-text{ font-size: 1rem; }
}

/* Touch devices: always show controls */
@media (hover: none){
  #tcTestimonials .tc-tm-control{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
    background: rgba(255,255,255,.18);
  }
}
/* ==============================
   BLOG SECTION (Premium cards)
   ============================== */

.tc-blog{
  position: relative;
}

/* card wrapper */
.tc-post{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,77,96,.10);
  box-shadow: 0 16px 46px rgba(3,47,48,.10);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}

.tc-post:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(3,47,48,.14);
}

/* media */
.tc-post-media{
  position: relative;
  display: block;
  height: 220px;
  background: #f3f6f7;
  overflow: hidden;
}

.tc-post-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
  display: block;
}

/* overlay gradient for readability */
.tc-post-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,23,22,.05) 20%, rgba(3,23,22,.55) 100%);
  opacity: .85;
  pointer-events:none;
}

.tc-post:hover .tc-post-media img{
  transform: scale(1.08);
}

/* category chip */
.tc-post-chip{
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: .42rem .75rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  color: #fff;
  background: var(--tc-teal);
  box-shadow: 0 12px 26px rgba(12,150,156,.25);
  display: inline-flex;
  align-items: center;
}

.tc-chip-sky{ background: #1B7EA3; }
.tc-chip-deep{ background: var(--tc-deep); }

/* body */
.tc-post-body{
  padding: 1.35rem 1.45rem 1.45rem;
}

.tc-post-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: rgba(39,77,96,.65);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .7rem;
}

.tc-post-date, .tc-post-read{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* title */
.tc-post-title{
  margin: 0 0 .6rem;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.tc-post-title a{
  color: #244A5C;
  text-decoration: none;
}

.tc-post-title a:hover{
  color: var(--tc-teal-dark);
  text-decoration: underline;
  text-underline-offset: .22rem;
}

/* excerpt */
.tc-post-excerpt{
  color: rgba(39,77,96,.72);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 1.05rem;
}

/* action button */
.tc-post-actions{
  display: flex;
  justify-content: flex-start;
}

.tc-btn-read{
  background: rgba(12,150,156,.10);
  border: 1px solid rgba(12,150,156,.26);
  color: var(--tc-teal-dark);
  font-weight: 900;
  border-radius: 16px;
  padding: .65rem 1rem;
  transition: transform .15s ease, background .15s ease;
}

.tc-btn-read:hover{
  background: rgba(12,150,156,.16);
  transform: translateY(-1px);
  color: var(--tc-teal-dark);
}

/* responsive */
@media (max-width: 575.98px){
  .tc-post-media{ height: 200px; }
  .tc-post-body{ padding: 1.15rem 1.15rem 1.25rem; }
  .tc-post-meta{ font-size: .88rem; }
}
/* ==============================
   FOOTER (Improved on teal gradient)
   ============================== */

.tc-footer{
  background:
    radial-gradient(900px circle at 15% 25%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(700px circle at 85% 20%, rgba(124,255,138,.14), transparent 55%),
    linear-gradient(135deg, #0C969C, #0A7075);
  color: rgba(255,255,255,.84);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
}

.tc-footer::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(3,23,22,.08), rgba(3,23,22,.22));
  opacity: .9;
}

.tc-footer .container{ position:relative; z-index:1; }

.tc-foot-logo:hover{ text-decoration: none; }

.tc-foot-name{
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

.tc-foot-desc{
  color: rgba(255,255,255,.72);
  font-weight: 600;
  line-height: 1.6;
  max-width: 52ch;
}

/* headings */
.tc-foot-h{
  color:#fff;
  font-weight: 900;
  font-size: 1rem;
  margin: 0 0 .75rem;
}

/* links */
.tc-foot-link{
  color: rgba(255,255,255,.82);
  font-weight: 700;
  text-decoration: none;
}
.tc-foot-link:hover{
  color:#fff;
  text-decoration: underline;
  text-decoration-color: var(--tc-accent); /* better contrast than teal */
  text-underline-offset: .35rem;
}

/* social buttons */
.tc-social-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.tc-social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

/* contact items */
.tc-foot-contact{
  display:flex;
  align-items:flex-start;
  gap: .65rem;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

/* icon bubble (make it visible on teal background) */
.tc-foot-ic{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.95);
  flex: 0 0 auto;
  margin-top: 1px;
}

/* WhatsApp button */
.tc-foot-whats{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.tc-foot-whats:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.26);
  text-decoration: none;
  color:#fff;
  transform: translateY(-1px);
}

/* divider */
.tc-foot-hr{
  border-color: rgba(255,255,255,.16);
  opacity: 1;
}

/* bottom */
.tc-foot-copy{
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.tc-foot-dot{
  color: rgba(255,255,255,.40);
  font-weight: 900;
}

/* Back to top (script-controlled) */
.tc-backtop{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  /* darker than footer so it stands out */
  background: rgba(3,47,48,.88);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;

  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, filter .15s ease;
}

.tc-backtop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tc-backtop:hover{
  filter: brightness(1.05);
  transform: translateY(-2px);
}

@media (max-width: 360px){
  .tc-backtop{ right: 12px; bottom: 12px; }
}