/* ============================================================
   BHARATI TOURS — pages.css  (inner page styles)
   Theme: --primary #1a6b4a | --accent #c8973b
   ============================================================ */

/* ── PAGE HERO BANNER ───────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #fff;
  overflow: hidden;
  margin-top: -118px;
  padding-top: 118px;
}

/* the actual background image lives in a pseudo-element so we can
   animate it independently of the overlay */
.page-hero-bg {
  position: absolute;
  inset: 0;
  /* background-size: cover;
  background-position: top; */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroBgZoom 1.6s cubic-bezier(.25, .46, .45, .94) forwards;
  z-index: 0;
}

@keyframes heroBgZoom {
  to {
    transform: scale(1);
  }
}

/* rich multi-layer overlay: dark base + green tint + golden shimmer */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10, 31, 24, .72) 0%,
      rgba(13, 107, 74, .38) 55%,
      rgba(10, 31, 24, .85) 100%);
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 35%, rgba(200, 151, 59, .22), transparent),
    radial-gradient(ellipse 40% 40% at 85% 65%, rgba(26, 107, 74, .30), transparent),
    linear-gradient(to top, rgba(10, 20, 15, .90) 0%, transparent 55%);
  z-index: 2;
}

/* decorative diagonal stripe */
.page-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 88px 0px;
}

/* accent bar left of h1 */
.page-hero-inner h1::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #c8973b, #e6b96a);
  border-radius: 2px;
  margin-bottom: 18px;
}

.page-hero-inner h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -.025em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .55);
}

.page-hero-inner p {
  font-size: 1.08rem;
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.78;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}

/* breadcrumb */
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 500;
}

.page-hero .breadcrumb a {
  color: #c8973b;
  text-decoration: none;
  transition: color .2s;
}

.page-hero .breadcrumb a:hover {
  color: #e6b96a;
}

/* hero badge (optional tag pill) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200, 151, 59, .18);
  border: 1px solid rgba(200, 151, 59, .45);
  color: #e6b96a;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ── PAGE SECTIONS ──────────────────────────────────────────── */
.page-section {
  padding: 80px 0;
}

.page-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 18px;
  color: #1a1a1a;
  letter-spacing: -.01em;
}

.page-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 30px 0 12px;
  color: #1a6b4a;
}

.page-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin: 0 0 16px;
}

.page-section ul {
  padding-left: 22px;
  line-height: 1.9;
  color: #444;
}

.page-section ul li {
  margin-bottom: 6px;
}

.page-section img {
  max-width: 100%;
  border-radius: 14px;
  margin: 20px 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

/* ── CARD GRID ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.tour-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.tour-card p {
  font-size: .92rem;
  color: #666;
  margin: 0 0 16px;
  flex: 1;
}

.tour-card a.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c8973b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: .88rem;
  align-self: flex-start;
  transition: background .2s;
}

.tour-card a.btn-view:hover {
  background: #a87a28;
}

/* ── TWO-COL ────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media(max-width:768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   CONTACT SECTION MODERN UI
───────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 32px;
  align-items: start;
}

@media(max-width:991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT INFO CARD ───────────────── */

.contact-info {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(145deg, #0f1e2b, #16293a);

  color: #fff;

  padding: 42px 34px;

  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .18);

  border: 1px solid rgba(255, 255, 255, .08);
}

/* Glow Effect */
.contact-info::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;

  background: rgba(200, 151, 59, .12);

  border-radius: 50%;

  top: -100px;
  right: -80px;

  filter: blur(10px);
}

/* Heading */
.contact-info h3 {
  font-size: 2rem;
  margin: 0 0 14px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.contact-info .contact-subtitle {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

/* Contact Item */
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, .08);

  position: relative;
  z-index: 2;
}

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

/* Icon Box */
.contact-icon {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  background: rgba(255, 255, 255, .06);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #c8973b;

  font-size: 1.15rem;

  backdrop-filter: blur(10px);

  transition: .3s ease;
}

.contact-item:hover .contact-icon {
  transform: translateY(-4px);
  background: #c8973b;
  color: #fff;
}

/* Text */
.contact-text h4 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: #fff;
}

.contact-text p,
.contact-text a {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: .25s ease;
}

.contact-text a:hover {
  color: #fff;
}

/* ── SOCIAL ICONS ───────────────── */

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 47px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.social-links a {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .06);

  color: #fff;

  font-size: 1.1rem;

  text-decoration: none;

  transition: .3s ease;

  border: 1px solid rgba(255, 255, 255, .08);
}

.social-links a:hover {
  transform: translateY(-5px);

  background: #c8973b;

  color: #fff;

  box-shadow:
    0 12px 30px rgba(200, 151, 59, .35);
}

/* ── FORM CARD ───────────────── */

.form-card {
  background: #fff;

  padding: 42px;

  border-radius: 28px;

  box-shadow:
    0 20px 50px rgba(15, 30, 43, .08);

  border: 1px solid rgba(15, 30, 43, .06);
}

.form-card h3 {
  margin-top: 0;
  font-size: 2rem;
  color: #111827;
}

.form-card p {
  color: #6b7280;
  margin-bottom: 28px;
}

.form-card label {
  display: block;

  font-size: .86rem;
  font-weight: 600;

  margin: 16px 0 8px;

  color: #1f2937;
}

.form-card input,
.form-card textarea {
  width: 100%;

  padding: 15px 18px;

  border-radius: 14px;

  border: 1px solid #e5e7eb;

  background: #f9fafb;

  font-size: .95rem;

  outline: none;

  transition: .3s ease;

  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #c8973b;

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(200, 151, 59, .10);
}

/* Button */
.form-card button {
  margin-top: 22px;

  border: none;

  background:
    linear-gradient(135deg, #c8973b, #b7811f);

  color: #fff;

  padding: 15px 34px;

  border-radius: 60px;

  font-size: .95rem;
  font-weight: 600;

  cursor: pointer;

  transition: .3s ease;

  box-shadow:
    0 10px 25px rgba(200, 151, 59, .25);
}

.form-card button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(200, 151, 59, .35);
}

/* ── ITINERARY ───────────────────────────────────────────────── */
.itinerary-day {
  background: #fff;
  border-left: 4px solid #c8973b;
  padding: 20px 24px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.itinerary-day h4 {
  margin: 0 0 8px;
  color: #c8973b;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.itinerary-day p {
  margin: 0;
  font-size: .95rem;
  color: #444;
}

/* ── ACTIVITY TILES ──────────────────────────────────────────── */
.activity-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  background: #222;
  transition: transform .3s;
}

.activity-tile:hover {
  transform: translateY(-5px);
}

.activity-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  z-index: 0;
}

.activity-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent 65%);
  z-index: 1;
}

.activity-tile h4 {
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE — new layout
   ═══════════════════════════════════════════════════════════════ */

/* wrapper: col-8 posts + col-4 sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

@media(max-width:991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .form-card,
  .contact-info {
    padding: 15px;
  }

  .social-links {
    margin-top: 10px;
  }
}

/* ── 3-COLUMN POST GRID ──────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width:1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .13);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 190px;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 14px;
  background: #c8973b;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: .75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta i {
  color: #c8973b;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1a6b4a;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  margin-top: auto;
  transition: gap .2s, color .2s;
}

.blog-card-read:hover {
  gap: 12px;
  color: #c8973b;
}

/* ============= about section ============================== */
.why-us-section {
  padding: 80px 20px;
  background: #f5f6fa;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card Style */
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

/* Icon Circle */
.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 50%;
}

/* Text */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 24px;
  /* max-height: calc(100vh - 40px); */
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}

.blog-sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar-widget {
  background: #fff;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
}

.sidebar-widget-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #c8973b;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0ece5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget-title i {
  font-size: 1rem;
}

/* Search */
.sidebar-search {
  display: flex;
  align-items: center;
  background: #f7f4ef;
  border-radius: 50px;
  border: 1.5px solid #e8e2d8;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.sidebar-search:focus-within {
  border-color: #c8973b;
  box-shadow: 0 0 0 3px rgba(200, 151, 59, .12);
}

.sidebar-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .9rem;
  color: #1a1a1a;
  outline: none;
}

.sidebar-search input::placeholder {
  color: #aaa;
}

.sidebar-search button {
  width: 44px;
  height: 44px;
  background: #c8973b;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.sidebar-search button:hover {
  background: #a87a28;
}

/* Category list */
.cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}

.cat-list li a:hover {
  background: #f7f4ef;
  color: #1a6b4a;
}

.cat-list li a .cat-count {
  background: #f0ece5;
  color: #888;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  min-width: 28px;
  text-align: center;
}

.cat-list li a:hover .cat-count {
  background: #1a6b4a;
  color: #fff;
}

.cat-list li a i {
  color: #c8973b;
  margin-right: 8px;
  font-size: .9rem;
}

/* Recent posts */
.recent-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0ece5;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post:first-child {
  padding-top: 0;
}

.recent-post:hover {
  opacity: .78;
}

.recent-post-img {
  width: 70px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  transition: transform .4s;
}

.recent-post:hover .recent-post-img img {
  transform: scale(1.08);
}

.recent-post-info {
  flex: 1;
}

.recent-post-date {
  font-size: .72rem;
  color: #c8973b;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.recent-post-title {
  font-size: .88rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── SINGLE BLOG ARTICLE ─────────────────────────────────────── */
.single-blog-section {
  padding: 80px 0;
  background: #f7f4ef;
}

.single-blog-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

@media(max-width:991px) {
  .single-blog-wrap {
    grid-template-columns: 1fr;
  }
}

.single-blog-article {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .08);
}

.single-blog-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  display: block;
}

.single-blog-body {
  padding: 40px 44px 48px;
}

.single-blog-cat {
  display: inline-block;
  background: #c8973b;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.single-blog-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.single-blog-byline {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .82rem;
  color: #888;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0ece5;
  flex-wrap: wrap;
}

.single-blog-byline i {
  color: #c8973b;
  margin-right: 4px;
}

.single-blog-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 18px;
}

.single-blog-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a6b4a;
  margin: 32px 0 12px;
}

.single-blog-pull {
  background: linear-gradient(135deg, #f7f4ef, #fff);
  border-left: 4px solid #c8973b;
  padding: 20px 26px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-size: 1.08rem;
  font-style: italic;
  color: #555;
  line-height: 1.75;
}

.single-blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a6b4a, #2d9165);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 12px;
  transition: box-shadow .2s, transform .2s;
}

.single-blog-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 107, 74, .35);
}

@media(max-width:768px) {
  .single-blog-body {
    padding: 26px 22px 32px;
  }

  .single-blog-cover {
    height: 230px;
  }
  .why-us-section{
    padding: 30px 0px;
  }
}

/* ── LEGACY COMPAT (old .blog-post if used elsewhere) ─────────── */
.blog-post {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  margin-bottom: 30px;
}

.blog-post img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.blog-post-body {
  padding: 28px;
}

.blog-post .meta {
  font-size: .82rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-post h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.blog-post a.read-more {
  color: #c8973b;
  font-weight: 600;
  text-decoration: none;
}