/* ReccaTech — site styles */

:root {
  --main-color: #0c8fcb;
  --secondary-color: #38bdf8;
  --dark: #1f2937;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border-radius: 12px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #222;
  background: #ffffff;
  line-height: 1.65;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

.text-main {
  color: var(--main-color);
}

.bg-main {
  background-color: var(--main-color) !important;
  color: white;
}

.bg-dark-custom {
  background-color: var(--dark) !important;
}

/* Buttons */
.btn-cta {
  font-size: 1.05rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(12, 143, 203, 0.25);
}

.btn-outline-light-cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-light-cta:hover {
  background: #fff;
  color: var(--dark);
}

.btn-demo-soft {
  background: #e8f6fc;
  color: #0a6f9e;
}

.btn-demo-soft:hover {
  background: #d5eef9;
  color: #085a80;
}

.btn-cta-light-border {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}

.btn-cta-light-border:hover {
  background: #f8f9fa;
  color: #111;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 0.85rem 0;
}

.navbar-brand {
  font-weight: 800;
  color: var(--main-color) !important;
}

.navbar-logo {
  height: 52px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 0.55rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--main-color) !important;
}

/* Hero */
#hero {
  position: relative;
  background: linear-gradient(rgba(12, 143, 203, 0.82), rgba(31, 41, 55, 0.88)),
    url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

#hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1.1rem;
  font-weight: 800;
}

#hero .lead {
  font-size: 1.2rem;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  color: #f1f1f1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.about-lead {
  font-size: 1.08rem;
}

/* Packages */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eef1f4;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(12, 143, 203, 0.16);
}

.service-card-featured {
  border-color: #0c8fcb;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 0.4rem;
}

.price-tag {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0.4rem 0 0.9rem;
}

.service-content ul {
  padding-left: 1.1rem;
  margin-bottom: 1.2rem;
  color: #444;
}

.service-content ul li {
  margin-bottom: 0.35rem;
}

.service-content .mt-auto {
  margin-top: auto;
}

/* Proof */
.proof-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef1f4;
  padding: 2rem;
  height: 100%;
}

.proof-box .quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

/* CTA */
.cta-bar {
  background: var(--main-color);
  color: white;
  padding: 3.5rem 0;
  text-align: center;
}

/* Niche */
.niche-pill {
  display: inline-block;
  background: #e8f6fc;
  color: #0a6f9e;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  margin: 0.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Tech */
.tech-grid img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(55%);
  opacity: 0.85;
  transition: all 0.3s;
}

.tech-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Fair pricing */
.fair-price {
  background: linear-gradient(135deg, #f8fafc, #e8f6fc);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #dbeafe;
}

.fair-price-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 2rem 0;
  font-size: 0.95rem;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  #hero {
    padding: 6.5rem 0 4rem;
    min-height: auto;
  }

  section {
    padding: 3.5rem 0;
  }
}
