/*
Theme Name: Jayem India Blog v2
Theme URI: https://jayemindia.com
Author: Jayem India
Description: A clean, responsive blog theme inspired by Jayem India — warm saffron, deep navy, and elegant typography. Built with Bootstrap 5.
Version: 1.0
Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: jayem-india
*/

/* ============================================================
   CSS VARIABLES — EXACT JAYEM INDIA COLORS (from site screenshot)
   ============================================================ */
:root {
  --primary:       #F26522;   /* Jayem Orange — navbar, buttons, badges */
  --primary-dark:  #D4530A;   /* Darker orange for hover */
  --primary-light: #FF8C4A;   /* Lighter orange tint */
  --accent:        #FF6B00;   /* Deep orange accent */
  --dark:          #1A1A1A;   /* Footer/header dark background */
  --dark-2:        #222222;   /* Card dark bg */
  --dark-3:        #2D2D2D;   /* Section dark bg */
  --text-dark:     #1A1A1A;
  --text-body:     #444444;
  --text-muted:    #888888;
  --text-light:    #CCCCCC;   /* Light text on dark bg */
  --bg-light:      #F8F8F8;   /* Light page background */
  --bg-white:      #FFFFFF;
  --bg-section:    #F2F2F2;
  --border:        #E0E0E0;
  --border-dark:   rgba(255,255,255,0.10);
  --card-shadow:   0 4px 20px rgba(0,0,0,0.10);
  --card-hover:    0 8px 32px rgba(242,101,34,0.20);
  --radius:        6px;
  --radius-lg:     10px;
  --font-heading:  'Rajdhani', 'Oswald', sans-serif;
  --font-body:     'Open Sans', 'Segoe UI', sans-serif;
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-primary-brand { color: var(--primary) !important; }
.text-navy { color: var(--dark) !important; }
.bg-primary-brand { background-color: var(--primary) !important; }
.bg-navy { background-color: var(--dark) !important; }
.bg-section { background-color: #F2F2F2 !important; }

.btn-brand {
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-brand:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242,101,34,0.35);
}
.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background-color: var(--primary);   /* Jayem Orange navbar — exact match */
  box-shadow: 0 3px 14px rgba(242,101,34,0.40);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .brand-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}
.navbar-brand span { color: #fff; }

.site-header .nav-link {
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s, background 0.2s;
  border-radius: 0;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff !important;
  background: rgba(0,0,0,0.20);
}
.site-header .navbar-toggler { border-color: rgba(255,255,255,0.5); }
.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO BANNER (Blog Page)
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 60%, #222222 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,80,10,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.blog-hero-title span { color: var(--accent); }
.blog-hero-subtitle {
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  max-width: 500px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   BLOG LISTING — CARDS
   ============================================================ */
.blog-section { padding: 64px 0; }

.post-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
}
.post-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.post-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img-wrap img { transform: scale(1.06); }

.post-card-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.post-card-meta i { color: var(--primary); margin-right: 4px; }

.post-card-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s;
}
.post-card-title a:hover { color: var(--primary); }

.post-card-excerpt {
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.post-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.post-author-mini {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text-muted);
}
.post-author-mini img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.read-more-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.read-more-link:hover { gap: 10px; color: var(--primary-dark); }

/* FEATURED POST */
.post-card-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--bg-white);
  transition: transform 0.28s, box-shadow 0.28s;
  margin-bottom: 32px;
}
.post-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover);
}
.post-card-featured .post-card-img-wrap { height: 360px; }
@media (max-width: 767px) {
  .post-card-featured .post-card-img-wrap { height: 220px; }
}
.post-card-featured .post-card-body { padding: 32px; }
.post-card-featured .post-card-title { font-size: 1.65rem; }
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 28px;
  margin-bottom: 28px;
}
.widget-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 3px solid var(--primary);
  display: flex; align-items: center; gap: 8px;
}
.widget-title i { color: var(--primary); }

/* Search */
.widget-search .input-group input {
  border: 2px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg-light);
  color: var(--text-dark);
}
.widget-search .input-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,80,10,0.12);
  outline: none;
}
.widget-search .input-group button {
  background: var(--primary);
  border: 2px solid var(--primary);
  border-left: none;
  color: #fff;
  border-radius: 0 6px 6px 0;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.widget-search .input-group button:hover { background: var(--primary-dark); }

/* Recent Posts */
.recent-post-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item img {
  width: 70px; height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.recent-post-info .rp-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.recent-post-info .rp-title:hover { color: var(--primary); }
.recent-post-info .rp-date {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Categories */
.category-list { list-style: none; }
.category-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.category-list li:last-child { border-bottom: none; }
.category-list a {
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s, padding-left 0.2s;
}
.category-list a:hover { color: var(--primary); padding-left: 4px; }
.cat-count {
  background: var(--bg-section);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 10px;
  border: 1px solid var(--border);
}

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  background: var(--bg-section);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.tag-item:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.blog-pagination .page-link {
  color: var(--primary);
  border: 2px solid var(--border);
  border-radius: 8px !important;
  margin: 0 3px;
  padding: 8px 16px;
  font-weight: 700;
  background: var(--bg-white);
  transition: all 0.2s;
}
.blog-pagination .page-link:hover,
.blog-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212,80,10,0.25);
}

/* ============================================================
   SINGLE POST / DETAIL PAGE
   ============================================================ */
.single-post-hero {
  background: #1A1A1A;
  border-bottom: 4px solid var(--primary);
  padding: 60px 0 50px;
}
.post-breadcrumb {
  font-size: 0.83rem;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.post-breadcrumb a { color: rgba(255,255,255,0.65); }
.post-breadcrumb a:hover { color: var(--accent); }
.post-breadcrumb .sep { color: rgba(255,255,255,0.35); }
.post-breadcrumb .current { color: rgba(255,255,255,0.5); }

.single-post-category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.single-post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}
.single-post-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  align-items: center;
}
.single-post-meta i { color: var(--accent); margin-right: 5px; }
.post-author-hero {
  display: flex; align-items: center; gap: 10px;
}
.post-author-hero img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}
.post-author-hero span { color: rgba(255,255,255,0.82); font-weight: 600; }

/* Featured Image */
.single-featured-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  margin-top: -40px;
  margin-bottom: 40px;
  max-height: 480px;
}
.single-featured-img-wrap img {
  width: 100%; max-height: 480px;
  object-fit: cover;
}

/* Content */
.post-content-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 40px 48px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .post-content-wrap { padding: 24px 20px; }
}

.post-content h2 {
  font-size: 1.55rem; color: var(--text-dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.post-content h3 { font-size: 1.25rem; color: var(--dark); margin: 28px 0 12px; }
.post-content p { margin-bottom: 20px; font-size: 1.02rem; color: var(--text-body); }
.post-content ul, .post-content ol {
  padding-left: 28px; margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; font-size: 1rem; }
.post-content a { color: var(--primary); font-weight: 600; border-bottom: 1px solid rgba(212,80,10,0.25); }
.post-content a:hover { color: var(--primary-dark); border-bottom-color: var(--primary-dark); }

.post-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-section);
  padding: 20px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text-dark);
}
.post-content blockquote cite {
  display: block; margin-top: 10px;
  font-size: 0.85rem; color: var(--text-muted);
  font-style: normal; font-weight: 600;
}

.post-content img {
  border-radius: var(--radius);
  width: 100%;
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.post-content table {
  width: 100%; margin-bottom: 24px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.post-content table th {
  background: var(--dark); color: #fff;
  padding: 12px 16px; text-align: left;
  font-family: var(--font-heading);
}
.post-content table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
}
.post-content table tr:nth-child(even) td { background: var(--bg-section); }

/* Tags & Share */
.post-tags-share {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 24px 0 0;
  border-top: 2px solid var(--border);
  margin-top: 32px;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags-label { font-weight: 700; font-size: 0.85rem; color: var(--dark); margin-right: 4px; }
.post-share { display: flex; gap: 10px; align-items: center; }
.share-label { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover { transform: scale(1.15); opacity: 0.9; color: #fff; }
.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.wa { background: #25D366; }
.share-btn.li { background: #0A66C2; }

/* Author Box */
.author-box {
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}
.author-box img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.author-box-info h4 {
  font-size: 1.1rem; color: var(--text-dark);
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem; color: var(--primary);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; margin-bottom: 10px;
}
.author-box-info p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 0; }

/* Related Posts */
.related-posts-section {
  padding: 40px 0 64px;
  background: var(--bg-section);
}
.section-title-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.section-title {
  font-size: 1.6rem; color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
}
.section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 36px 40px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .comments-section { padding: 24px 18px; }
}
.comments-title {
  font-size: 1.3rem; margin-bottom: 28px;
  color: var(--dark); padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.comments-title i { color: var(--primary); }

.comment-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.comment-item:last-child { border-bottom: none; }
.comment-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.comment-body-wrap .comment-author {
  font-weight: 700; font-size: 0.95rem; color: var(--text-dark);
}
.comment-body-wrap .comment-date {
  font-size: 0.78rem; color: var(--text-muted); margin-left: 8px;
}
.comment-body-wrap .comment-text {
  font-size: 0.93rem; color: var(--text-body);
  margin: 6px 0 10px; line-height: 1.7;
}
.comment-reply-btn {
  font-size: 0.8rem; font-weight: 700;
  color: var(--primary); border: none; background: none;
  cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.comment-reply-btn:hover { color: var(--primary-dark); }

/* Comment Form */
.comment-form-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 36px 40px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .comment-form-section { padding: 24px 18px; }
}
.comment-form-title {
  font-size: 1.3rem; margin-bottom: 24px;
  color: var(--dark); padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.form-label {
  font-weight: 700; font-size: 0.88rem;
  color: var(--dark); margin-bottom: 6px;
}
.form-control {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,80,10,0.12);
  outline: none;
  background: #fff;
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A1A1A;           /* Exact Jayem dark footer */
  color: rgba(255,255,255,0.72);
  padding: 60px 0 0;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; max-width: 280px; color: #aaa; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: #2D2D2D;
  border: 1px solid #333;
  color: rgba(255,255,255,0.72);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
/* Orange underline like Jayem site */
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #2D2D2D;
  padding: 18px 0;
  margin-top: 48px;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.40);
  text-align: center;
}
.footer-bottom a { color: var(--primary); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff; border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,80,10,0.35);
  transition: all 0.25s;
  display: none; align-items: center; justify-content: center;
  z-index: 999;
}
.back-to-top.show { display: flex; }
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .blog-section { padding: 48px 0; }
}
@media (max-width: 767px) {
  .blog-hero { padding: 48px 0 40px; }
  .post-card-featured .post-card-body { padding: 22px; }
}
