/* ==================================================
   ROOT COLOURS & DESIGN TOKENS
   ================================================== */

:root {
  --navy: #253551;
  --beige: #e0e0db;
  --muted: #6b7280;
  --accent: #2d6cdf;
  --orange: #d35400;
  --pricing-accent: #c05c19;
}

/* ==================================================
   GLOBAL BASE STYLES
   ================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap");

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--beige);
  color: #16202a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h1,
h2 {
  letter-spacing: -0.3px;
}

h1 {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }
}

/* ==================================================
   NAVBAR (PRIMARY LIVE NAVBAR)
   ================================================== */

/* Sticky Navbar */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #253551 0%, #2c3f63 100%);
}

/* Logo */
.nav-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--orange);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Nav links */
.site-navbar .nav-link {
  color: rgba(224, 224, 219, 0.9);
  padding: 6px 14px;
  transition: 0.25s ease;
  position: relative;
  text-decoration: none;
}
.site-navbar .nav-link:hover {
  color: #fff;
}
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: 0.25s ease;
}
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  width: 60%;
}

/* FIX: Ensure active nav link stays white on all pages */
.site-navbar .nav-link.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* Desktop phone number */
.nav-phone a {
  color: var(--beige);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(230, 106, 44, 0.25);
  transition: 0.25s ease;
}
.nav-phone a:hover {
  background: rgba(230, 106, 44, 0.18);
  color: #fff;
}

/* Mobile phone number (centered in navbar) */
.mobile-nav-phone {
  position: absolute;
  left: 50%;
  top: 32px; /* Adjust this to move it up/down */
  transform: translateX(-50%);
  z-index: 2000;
}
.mobile-nav-phone a {
  color: var(--beige);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  background: rgba(230, 106, 44, 0.25);
  border-radius: 8px;
  text-decoration: none;
}
.mobile-nav-phone a:hover {
  background: rgba(230, 106, 44, 0.18);
  color: #fff;
}

/* Hide mobile phone on desktop */
@media (min-width: 992px) {
  .mobile-nav-phone {
    display: none !important;
  }
}

/* ==================================================
   HOME PAGE
   ================================================== */

/* "Recent Work & Accomplishmemts" - Logos */
.logo-img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  background-color: #f8f9fa;
  padding: 10px;
}

/* Hero Image */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #2b3d61 100%);
  color: var(--beige);
  padding: 80px 0;
}
.hero .lead {
  color: rgba(224, 224, 219, 0.9);
  line-height: 1.6;
}
.hero-figure {
  width: clamp(320px, 36vw, 420px);
  height: clamp(320px, 36vw, 420px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 20, 35, 0.35);
  border: 8px solid rgba(224, 224, 219, 0.06);
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

/* Hero Image - Mobile top spacing */
@media (max-width: 767.98px) {
  .hero-figure {
    margin-top: 24px;
  }
}
.hero-figure:hover {
  transform: scale(1.03);
}

/* 3 Mini Cards */
.card-soft {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Helping Businesses Succeed - Heading */
.section-title {
  color: var(--navy);
  font-weight: 700;
}

/* Image/Icon - Sizing */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--navy);
  font-size: 28px;
}

/* Pricing Cards - Borders */
.pricing-card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
footer.site-footer {
  background: var(--navy);
  color: var(--beige);
  padding: 36px 0;
}

/* CTA Button - "See Full Pricing" */
.cta-btn {
  background: var(--accent);
  border: 0;
  padding: 12px 22px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}

/* Button Border - "Request a Quote" */
a.btn-ghost {
  background: transparent;
  border: 1px solid rgba(224, 224, 219, 0.14);
  color: var(--beige);
}

/* "Our services" - Button Colour */
.cta-btn-orange {
  background: #ff8a3d;
  border: 0;
  padding: 12px 22px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}
.cta-btn-orange:hover {
  background: #e65c00;
  text-decoration: none;
}

/* Bottom Somerset Image – Make it responsive */
.somerset-img {
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
}

/* HOMEPAGE CONTENT REPAIR */
.pricing-card,
.card-soft,
.case-card {
  background: #ffffff !important;
  color: #16202a !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pricing-card h5,
.pricing-card p,
.pricing-card .text-muted {
  color: #16202a !important;
}
img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* HERO MOBILE TEXT FIX */
.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero {
    padding: 60px 0;
  }

  .hero .lead {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* HERO MINI CARDS – SLIGHTLY SMALLER */
.hero .card-soft {
  padding: 12px !important;
  min-height: 0;
}

.hero .card-soft .h5 {
  font-size: 1rem;
}

.hero .card-soft .text-muted {
  font-size: 0.85rem;
}

/* ==================================================
   ABOUT PAGE
   ================================================== */

/* Center "Our Story" section on mobile */
@media (max-width: 991px) {
  .card-soft.p-4 {
    text-align: center;
  }
  .card-soft.p-4 .section-title {
    text-align: center;
  }
  .card-soft.p-4 p {
    margin-left: auto;
    margin-right: auto;
  }
  .team-img {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Team Image */
.team-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-soft {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

/* Typography - For "Our Journey" */
.highlight {
  color: var(--navy);
  font-weight: 600;
}
.section-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Journey Steps */
.journey-step {
  padding: 20px;
  border-left: 3px solid var(--navy);
  margin-bottom: 20px;
}
.journey-step h6 {
  font-weight: 600;
  color: var(--navy);
}

/* ==================================================
   SERVICES PAGE
   ================================================== */

.service-card {
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin: 0;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(10, 20, 35, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
  text-align: center;
}
.service-card li {
  margin: 8px 0;
}

.service-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: var(--navy);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-btn:hover {
  transform: scale(1.08);
  background-color: #ff8a3d;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}
.service-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-card p {
  margin-bottom: 1.5rem;
}

.list-centered {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.list-centered li {
  width: 100%;
  line-height: 1.8;
}

/* ==================================================
   SERVICES PAGE (Individuals)
   ================================================== */

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #2b3d61 100%);
  color: var(--beige);
  padding: 80px 0;
  text-align: center;
}
.hero p.lead {
  color: rgba(224, 224, 219, 0.9);
  margin-top: 20px;
  line-height: 1.6;
}

.card-soft {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.section-title {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

ul.services-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}
ul.services-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
ul.services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.cta-btn {
  display: block;
  margin: 40px auto 0 auto;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  background: var(--accent);
  border: 0;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/* ==================================================
   PORTFOLIO PAGE
   ================================================== */

/* "Our Latest Work" - Title */
.portfolio-title {
  padding: 40px 0 25px 0; /* ✅ matches your other section rhythm */
  background: transparent;
}

/* Portfolio cards */
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(10, 20, 35, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(10, 20, 35, 0.16);
}
.case-card img {
  width: 100%;
  height: 220px;
  object-fit: contain; /* show full image */
  background-color: #f0f0f0; /* optional, looks nice for transparent images */
  border-radius: 8px;
  margin-bottom: 15px;
}

.accent-line {
  width: 46px; /* how wide the line is */
  height: 3px; /* how thick the line is */
  background: var(--accent); /* uses your existing accent colour */
  border-radius: 999px; /* makes the ends rounded */
  margin: 12px auto 4px; /* centers it and adds a bit of space */
}

.case-card .placeholder-text {
  flex-grow: 1;
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
}
.case-card .btn-view {
  align-self: center;
  margin-top: auto;
}

.portfolio-section {
  background: var(--beige);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.portfolio-section .row {
  margin-bottom: -50px;
}

.section-achievements {
  background: linear-gradient(180deg, #f7f8fa, #eef1f6);
  padding: 90px 0 50px 0; /* ✅ EXTRA GREY SPACE UNDER BUTTON */
  margin-top: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.section-cta {
  margin-top: 50px; /* ✅ spacing ABOVE the button */
  margin-bottom: 0; /* ✅ prevents white gap below */
  padding: 0;
}
.section-why-us {
  background: var(--beige);
  padding: 70px 0 90px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section-achievements .rounded-4,
.section-why-us .card-soft {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.section-achievements + .section-why-us {
  margin-top: -10px;
}

/* Center testimonial cards on mobile */
@media (max-width: 768px) {
  .row.g-4 {
    justify-content: center !important;
    text-align: center;
  }
  .row.g-4 .col-md-4 {
    max-width: 90%;
  }
}

/* Testimonial Slider */
.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  min-width: 320px;
  max-width: 360px;
  background: #fff;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-align: center;
}

/* Arrow Buttons */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  opacity: 0.9;
  transition: 0.25s ease;
}
.testimonial-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.testimonial-arrow.left {
  left: 5px;
}
.testimonial-arrow.right {
  right: 5px;
}

/* Mobile: Show ONLY 1 testimonial at a time */
@media (max-width: 768px) {
  .testimonial-slider {
    padding: 10px 10px; /* tighter on mobile */
  }
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Natural Grey Spacer */
.natural-grey-spacer-1 {
  height: 35px; /* ✅ controls how tall the grey area is */
  background: var(--beige);
}
/* Natural Grey Spacer */
.natural-grey-spacer-2 {
  height: 20px; /* ✅ controls how tall the grey area is */
  background: var(--beige);
}

/* ==================================================
   PRICING PAGE
   ================================================== */

.pricing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(10, 20, 35, 0.08);
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 20, 35, 0.15);
}
.pricing-card h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}
.pricing-card .price {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--pricing-accent);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #555;
  text-align: left;
}
.features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pricing-accent);
  font-weight: bold;
}

.featured {
  border: 2px solid var(--pricing-accent);
  box-shadow: 0 0 0 2px var(--pricing-accent), 0 16px 32px rgba(0, 0, 0, 0.12);
}
.featured .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--pricing-accent);
  color: #fff;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.cta-note {
  text-align: center;
  margin-top: 60px;
  font-size: 1rem;
  color: #555;
}
.cta-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.cta-note a:hover {
  text-decoration: underline;
}

.cta-note .cta-btn {
  margin-top: 16px;
  margin-bottom: 40px;
}

/* Keep Home link blue even when active */
.navbar-nav .nav-link.active[href="https://www.scaleupdevs.com"]
{
  color: #d35400;
  font-weight: 600;
}

/* ==================================================
   BLOG PAGE
   ================================================== */

.page-head {
  background: var(--navy);
  color: var(--beige);
  padding: 56px 0;
}

.page-hero .container {
  max-width: 700px;
}

@media (max-width: 767.98px) {
  .lead {
    font-size: 1rem;
    line-height: 1.45;
  }
}

/* Blog Cards */
.post-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(10, 20, 35, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 20, 35, 0.12);
}
.post-card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Blog Read More */
.post-card a.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--orange);
  transition: color 0.25s ease, transform 0.25s ease;
}
.post-card a.blog-read-more:hover {
  color: #cf5a22;
  transform: translateX(3px);
}

/* ==================================================
   BLOG PAGE (Individuals)
   ================================================== */

/* ARTICLE STYLES */
.article-box {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(10, 20, 35, 0.06);
}
.article-section {
  scroll-margin-top: 120px; /* Adjust if your navbar is taller/shorter */
  margin-bottom: 50px;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}
.article-section h2 {
  color: var(--navy);
  font-weight: 700;
}
.article-section ul {
  margin-top: 15px;
  line-height: 1.75;
}

.tip-box {
  background: #f7f7f5;
  border-left: 4px solid var(--navy);
  padding: 12px 18px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #16202a;
}

.toc {
  background: #f4f4ef;
  padding: 20px;
  border-radius: 12px;
}
.toc ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}
.toc a {
  color: var(--accent);
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--navy);
  color: var(--beige);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(10, 20, 35, 0.12);
}
.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-section p {
  max-width: 650px;
  margin: 0 auto 25px;
}
.cta-btn {
  display: inline-block;
  background: #ff8a3d;
  color: var(--navy);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-btn:hover {
  background: var(--beige);
  color: var(--navy);
}

/* Next Article Section */
.next-article {
  border-top: 1px solid #e5e5e5;
}
.next-article h3 {
  font-weight: 700;
  color: var(--navy);
}
.next-article-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 6px 20px rgba(10, 20, 35, 0.06);
  border-left: 4px solid var(--accent);
}
.next-article-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.next-article-card p {
  color: #444;
  margin-bottom: 15px;
}
.next-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.next-link:hover {
  text-decoration: underline;
}

/* Blog Hero */
.page-head {
  background: var(--navy);
  color: var(--beige);
  padding: 80px 0;
  text-align: center;
}
.page-head h1 {
  font-weight: 700;
  margin-bottom: 15px;
}
.page-head p {
  max-width: 750px;
  margin: 0 auto;
}

/* Blog Layout */
.blog-wrapper {
  background: #fff;
  padding: 60px 0;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
}

/* Section Blocks */
.blog-section {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.blog-section:last-child {
  border-bottom: none;
}
.blog-section h2 {
  font-weight: 600;
  margin-bottom: 20px;
  scroll-margin-top: 110px; /* fixes sticky navbar cutting headers */
}
.blog-section p,
.blog-section ul {
  max-width: 700px;
  margin: 0 auto;
}
.blog-section ul {
  line-height: 1.8;
}

/* Table of Contents */
.blog-toc {
  background: #f7f7f7;
  padding: 25px 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  border-left: 6px solid #ff8a3d;
}
.blog-toc h3 {
  margin-bottom: 15px;
}
.blog-toc ul {
  padding-left: 0;
  list-style: none;
}
.blog-toc ul li {
  margin-bottom: 10px;
}
.blog-toc ul li a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  transition: 0.3s;
}
.blog-toc ul li a:hover {
  color: #ff8a3d;
}

/* CTA Block */
.cta-box {
  background: #ff8a3d;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  margin: 70px 0;
  text-align: center;
}
.cta-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.cta-box p {
  font-size: 18px;
  margin-bottom: 25px;
}
.cta-box a {
  display: inline-block;
  background: #fff;
  color: #ff8a3d;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-box a:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* Next Articles */
.next-articles {
  margin-top: 60px;
}
.next-articles h3 {
  font-weight: 600;
  margin-bottom: 25px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.article-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}
.article-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}
.article-card p {
  color: #666;
  margin-bottom: 15px;
}
.article-card a {
  color: #ff8a3d;
  font-weight: 600;
  text-decoration: none;
}
.article-card a:hover {
  text-decoration: underline;
}

/* Reading Time */
.reading-time {
  font-size: 0.95rem;
  color: var(--black);
  opacity: 0.8;
}
.reading-dot {
  width: 8px;
  height: 8px;
  background: var(--beige);
  border-radius: 50%;
  display: inline-block;
}

/* ==================================================
   CONTACT PAGE
   ================================================== */

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(10, 20, 35, 0.06);
}

/* ==================================================
   PRIVACY POLICY PAGE
   ================================================== */

/* Privacy Policy Content Container */
main.legal-page {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 42px;
  margin-top: 50px;
  box-shadow: 0 18px 40px rgba(10, 20, 35, 0.08);
  max-width: 960px;
}

/* Section Headings */
.legal-page h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-left: 14px;
}

/* Accent Line Beside Section Headings */
.legal-page h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 24px;
  background: var(--orange);
  border-radius: 10px;
}

/* Legal Page Paragraph & List Text */
.legal-page p,
.legal-page li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2b2f36;
}

/* Legal Page Links */
.legal-page a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}

/* Legal Page Lists */
.legal-page ul {
  padding-left: 18px;
  margin-top: 10px;
}
.legal-page ul li {
  margin-bottom: 10px;
}

/* ==================================================
   REUSABLE UI COMPONENTS
   ================================================== */

.card-soft {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.section-title {
  color: var(--navy);
  font-weight: 700;
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--navy);
  font-size: 28px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(10, 20, 35, 0.08);
  color: #16202a;
}

/* ==================================================
   GLOBAL ORANGE BUTTON SYSTEM (ALL BUTTONS)
   ================================================== */

.btn:not(.btn-ghost),
.btn-dark,
.btn-primary,
.cta-btn,
.service-btn {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Hover Effect */
.btn:hover,
.btn-dark:hover,
.btn-primary:hover,
.btn-outline-dark:hover,
.cta-btn:hover,
.service-btn:hover {
  background: #cf5a22 !important;
  border-color: #cf5a22 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 106, 44, 0.25);
}

/* Outline Thickness */
.btn-outline-dark {
  border-width: 2px;
}

/* Ghost Button */
a.btn-ghost {
  background: transparent;
  border: 1px solid rgba(224, 224, 219, 0.14);
  color: var(--beige);
}

/* ==================================================
   FOOTER
   ================================================== */

footer.site-footer {
  background: var(--navy);
  color: var(--beige);
  padding: 36px 0;
}

/* ==================================================
   LOGOS
   ================================================== */

.logo-img {
  display: block;
  margin: 0 auto;
  width: 150px !important;
  height: 150px !important;
  object-fit: contain;
  max-width: none !important;
}
