/*!
Theme Name: FUB Theme 2026
Theme URI: https://freeurdubibles.com
Description: A clean, modern ministry theme for Free Urdu Bibles - Good Samaritan Ministries Pakistan
Author: Good Samaritan Ministries Pakistan
Author URI: https://gsministries.org
Version: 2.1.7
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fub-theme-2026
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
	--navy: #1B2A4A;
	--navy-dark: #0F1D36;
	--navy-light: #2C4070;
	--orange: #E8913A;
	--orange-dark: #D47820;
	--orange-light: #F0A050;
	--bg-light: #FAFAFA;
	--bg-off: #F0F4FA;
	--white: #FFFFFF;
	--text-dark: #1B2A4A;
	--text-body: #5A6880;
	--text-muted: #8899BB;
	--border: #E8ECF2;
	--border-light: #F0F0F0;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text-body);
	background: var(--bg-light);
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
	background: var(--navy-dark);
	padding: 9px 0;
	font-size: 12px;
	color: var(--text-muted);
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar a { color: var(--orange); font-weight: 500; }
.topbar a:hover { color: var(--orange-light); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { color: var(--text-muted); font-size: 12px; }
.topbar-right a:hover { color: var(--orange); }

/* ============================================
   HEADER
   ============================================ */
#site-header,
.site-header,
.header {
	background: var(--white);
	padding: 14px 0;
	box-shadow: 0 2px 24px rgba(27,42,74,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}
#site-header .container,
.site-header .container,
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.site-branding,
.logo { display: flex; align-items: center; gap: 14px; }
.site-branding a { text-decoration: none; }
#site-header .site-title { display: none; }
.custom-logo-link img,
.logo img {
	max-height: 55px;
	width: auto;
}

/* Navigation */
.nav-primary,
.nav {
	display: flex;
	gap: 6px;
	align-items: center;
}
.nav-primary a,
.nav a {
	color: var(--text-body);
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	padding: 8px 12px;
	white-space: nowrap;
	position: relative;
	transition: color 0.3s;
}
.nav-primary a:hover,
.nav a:hover { color: var(--navy); }
.nav-primary a::after,
.nav a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 12px;
	right: 12px;
	height: 2px;
	background: var(--orange);
	transform: scaleX(0);
	transition: transform 0.3s;
}
.nav-primary a:hover::after,
.nav a:hover::after { transform: scaleX(1); }

/* Dropdown Menus */
.nav-primary > ul { list-style: none; display: flex; gap: 0; align-items: center; }
.nav-primary li { position: relative; }
.nav-primary ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	min-width: 220px;
	box-shadow: 0 8px 32px rgba(27,42,74,0.12);
	border-radius: 10px;
	padding: 8px 0;
	z-index: 200;
	flex-direction: column;
	border: 1px solid var(--border);
}
.nav-primary li:hover > ul.sub-menu { display: flex; }
.nav-primary .sub-menu a {
	padding: 10px 20px;
	font-size: 13px;
	display: block;
	white-space: nowrap;
}
.nav-primary .sub-menu a:hover { background: var(--bg-off); color: var(--orange); }
.nav-primary .sub-menu a::after { display: none; }
.menu-item-has-children > a::after {
	content: '▾';
	margin-left: 4px;
	font-size: 10px;
}

/* Header Right / CTA */
.header-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 0.5rem;
}
.header-right .btn,
.nav .cta-btn {
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white) !important;
	padding: 11px 26px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 14px rgba(232,145,58,0.3);
	transition: all 0.3s;
	white-space: nowrap;
}
.header-right .btn::after,
.nav .cta-btn::after { display: none !important; }
.header-right .btn:hover,
.nav .cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(232,145,58,0.4);
}

/* Mobile Menu Toggle */
.menu-toggle,
.btn-menu-toggle {
	display: none !important;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--navy);
	padding: 4px 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
	padding: 90px 0 85px;
	background: linear-gradient(135deg, var(--bg-off) 0%, var(--bg-light) 50%, #FFFBF6 100%);
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -8%;
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(232,145,58,0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -8%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(27,42,74,0.04) 0%, transparent 70%);
	border-radius: 50%;
}
.hero .container {
	display: flex;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.hero-left { flex: 1.15; }
.hero-right { flex: 0.85; }

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 30px;
	padding: 7px 18px;
	margin-bottom: 22px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.hero-badge .pulse-dot {
	width: 8px;
	height: 8px;
	background: #4CAF50;
	border-radius: 50%;
	display: inline-block;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.hero-badge span {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--navy);
	font-weight: 600;
}

/* Hero Title */
.hero-title,
.hero h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 46px;
	line-height: 1.12;
	color: var(--navy);
	font-weight: 700;
	margin-bottom: 18px;
}
.hero-title .highlight,
.hero h2 .highlight,
.hero-title span {
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hero Description */
.hero-left > p,
.hero .hero-description {
	font-size: 16px;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 500px;
}

/* Hero Buttons */
.hero-btns {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 30px;
}
.hero-btns .btn-primary,
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white);
	padding: 15px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	box-shadow: 0 4px 18px rgba(232,145,58,0.3);
	transition: all 0.3s;
	text-decoration: none;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(232,145,58,0.4);
	color: var(--white);
}
.hero-btns .btn-secondary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	color: var(--navy);
	padding: 15px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	border: 1.5px solid var(--border);
	transition: all 0.3s;
	text-decoration: none;
}
.btn-secondary:hover { border-color: var(--navy); }

/* Hero Trust */
.hero-trust {
	display: flex;
	align-items: center;
	gap: 16px;
}
.hero-trust .check,
.hero-trust .trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

/* Hero Card */
.hero-card {
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 16px 56px rgba(27,42,74,0.1);
	border: 1px solid var(--border-light);
}
.hero-card-img {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 16px;
}
.hero-card-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}
.hero-card-bottom { padding: 0 6px 4px; }
.hero-card-bottom h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 4px;
}
.hero-card-bottom p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
	background: var(--navy);
}
.stats-bar .container {
	display: flex;
}
.stat-item {
	flex: 1;
	text-align: center;
	padding: 36px 20px;
	border-right: 1px solid rgba(255,255,255,0.08);
	transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	color: var(--orange);
	font-weight: 700;
	line-height: 1;
}
.stat-item p,
.stat-item .stat-label {
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-top: 6px;
	font-weight: 500;
}

/* ============================================
   SECTION HEADINGS (shared)
   ============================================ */
.section-head {
	text-align: center;
	margin-bottom: 50px;
}
.section-head .overline,
.overline {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--orange);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}
.section-head h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	color: var(--navy);
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}
.section-head p {
	color: var(--text-muted);
	font-size: 15px;
	max-width: 560px;
	margin: 0 auto;
}

/* ============================================
   WHAT WE DO CARDS
   ============================================ */
.what-we-do {
	padding: 90px 0;
	background: var(--bg-light);
}
.cards-grid {
	display: flex;
	gap: 24px;
}
.card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 4px 24px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
	overflow: hidden;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 44px rgba(27,42,74,0.1);
}
.card-img-wrap {
	width: 100%;
	overflow: hidden;
}
.card-img-wrap img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.card:hover .card-img-wrap img {
	transform: scale(1.05);
}
.card-icon {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(232,145,58,0.12), rgba(232,145,58,0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 24px 26px 16px;
}
.card h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	color: var(--navy);
	font-weight: 600;
	margin: 0 26px 10px;
}
.card p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	margin: 0 26px 14px;
}
.card .card-link {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 26px 26px;
	transition: gap 0.3s;
}
.card .card-link:hover { gap: 10px; }

/* ============================================
   STORY SPLIT SECTION
   ============================================ */
.story-section {
	padding: 90px 0;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.story-section .container {
	display: flex;
	gap: 55px;
	align-items: center;
}
.story-img-wrap {
	flex: 1;
	position: relative;
}
.story-img {
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 44px rgba(27,42,74,0.15);
	position: relative;
}
.story-img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}
.story-img-badge {
	position: absolute;
	bottom: -14px;
	right: 20px;
	background: var(--orange);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(232,145,58,0.35);
}
.story-text { flex: 1; }
.story-text .overline {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--orange);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.story-text .overline::before {
	content: '';
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--orange), transparent);
}
.story-text h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: var(--navy);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 18px;
}
.story-text p {
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 14px;
}
.story-text .read-more,
.read-more {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: var(--orange);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	transition: gap 0.3s;
}
.read-more:hover { gap: 10px; }

/* ============================================
   BIBLE TYPES
   ============================================ */
.bible-types {
	padding: 90px 0;
	background: var(--bg-off);
	border-top: 1px solid var(--border-light);
}
.types-grid {
	display: flex;
	gap: 20px;
}
.type-card {
	flex: 1;
	background: var(--white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
	text-align: center;
}
.type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(27,42,74,0.1);
}
.type-card-top {
	height: 120px;
	background: linear-gradient(135deg, var(--navy), var(--navy-light));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
}
.type-card:nth-child(even) .type-card-top {
	background: linear-gradient(135deg, #2C4070, #1B2A4A);
}
.type-card-body { padding: 22px 18px; }
.type-card-body h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 6px;
}
.type-card-body p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
	padding: 90px 0;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.process-steps {
	display: flex;
	gap: 20px;
}
.step {
	flex: 1;
	text-align: center;
	padding: 30px 20px;
	position: relative;
}
.step::after {
	content: '\2192';
	position: absolute;
	right: -12px;
	top: 50px;
	font-size: 24px;
	color: var(--border);
}
.step:last-child::after { display: none; }
.step-num {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(232,145,58,0.25);
}
.step h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 8px;
}
.step p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
	padding: 90px 0;
	background: linear-gradient(135deg, var(--bg-off) 0%, #FFFBF6 100%);
	border-top: 1px solid var(--border-light);
}
.testimonial-grid {
	display: flex;
	gap: 24px;
}
.testimonial-card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	padding: 30px 24px;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	position: relative;
}
.testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 50px;
	color: var(--orange);
	opacity: 0.2;
	font-family: Georgia, serif;
	line-height: 1;
}
.testimonial-card .stars {
	color: var(--orange);
	font-size: 16px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}
.testimonial-card p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 18px;
}
.testimonial-card .author {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--border-light);
	padding-top: 14px;
}
.testimonial-card .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--navy-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}
.testimonial-card .author-info h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--navy);
	font-weight: 600;
}
.testimonial-card .author-info span {
	font-size: 11px;
	color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.cta-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23E8913A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container {
	max-width: 700px;
	position: relative;
	z-index: 2;
}
.cta-banner h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 34px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.25;
}
.cta-banner h2 span { color: var(--orange); }
.cta-banner p {
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 32px;
	line-height: 1.7;
}
.cta-banner-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
}
.cta-banner .cb1 {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white);
	padding: 15px 36px;
	border-radius: 10px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	box-shadow: 0 4px 18px rgba(232,145,58,0.3);
	transition: all 0.3s;
}
.cta-banner .cb1:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(232,145,58,0.45);
	color: var(--white);
}
.cta-banner .cb2 {
	display: inline-flex;
	align-items: center;
	background: transparent;
	border: 1.5px solid rgba(232,145,58,0.4);
	color: var(--orange);
	padding: 15px 36px;
	border-radius: 10px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	transition: all 0.3s;
}
.cta-banner .cb2:hover {
	border-color: var(--orange);
	background: rgba(232,145,58,0.08);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview {
	padding: 90px 0;
	background: var(--bg-light);
	border-top: 1px solid var(--border-light);
}
.blog-grid {
	display: flex;
	gap: 24px;
}
.blog-card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
}
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(27,42,74,0.1);
}
.blog-card .blog-thumbnail,
.blog-card-img {
	height: 180px;
	overflow: hidden;
}
.blog-card .blog-thumbnail img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.blog-card:hover .blog-thumbnail img {
	transform: scale(1.05);
}
.blog-card-body { padding: 22px 20px; }
.blog-card-body .blog-date,
.blog-card-body .date {
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 8px;
	display: block;
}
.blog-card-body h4,
.blog-card-body .blog-title {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}
.blog-card-body .blog-title a {
	color: var(--navy);
}
.blog-card-body .blog-title a:hover {
	color: var(--orange);
}
.blog-card-body p,
.blog-card-body .blog-excerpt {
	font-size: 13px;
	color: var(--text-body);
	line-height: 1.6;
	margin-bottom: 12px;
}
.blog-card-body a.blog-readmore,
.blog-card-body > a {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
}

/* ============================================
   SCRIPTURE QUOTE
   ============================================ */
.scripture-quote {
	padding: 65px 0;
	text-align: center;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.scripture-quote blockquote {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 22px;
	color: var(--navy);
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
}
.scripture-quote cite {
	display: block;
	margin-top: 14px;
	font-style: normal;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
	letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer,
.footer {
	background: var(--navy-dark);
}
.footer-main,
.site-footer .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 55px 30px 40px;
	display: flex;
	gap: 40px;
}
.footer-col { flex: 1; }
.footer-col:first-child { flex: 1.4; }
.footer-col h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: var(--orange);
	font-weight: 600;
	margin-bottom: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.footer-col p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 12px;
}
.footer-col a {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 10px;
	transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col .contact-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 8px;
}
.footer-bar,
.site-footer .footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 18px 30px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.footer-bar p {
	font-size: 12px;
	color: #4A6080;
}
.footer-bar a { color: var(--orange); }

/* ============================================
   PAGE TEMPLATES (generic pages)
   ============================================ */
.page-content,
.entry-content {
	padding: 60px 0;
}
.page-content .container,
.entry-content .container {
	max-width: 900px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
	font-family: 'Poppins', sans-serif;
	color: var(--navy);
	margin-bottom: 16px;
}
.entry-content p {
	margin-bottom: 16px;
	line-height: 1.8;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.wp-block-image img { border-radius: 12px; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.wp-block-separator { border-color: var(--border); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.nav-primary { gap: 2px; }
	.nav-primary a { padding: 8px 8px; font-size: 13px; }
}

@media (max-width: 768px) {
	.hero .container,
	.story-section .container { flex-direction: column !important; }
	.cards-grid,
	.types-grid,
	.process-steps,
	.testimonial-grid,
	.blog-grid { flex-direction: column; }
	.hero-title,
	.hero h2 { font-size: 32px; }
	.hero { padding: 50px 0; }
	.what-we-do,
	.story-section,
	.bible-types,
	.process-section,
	.testimonials,
	.blog-preview { padding: 60px 0; }
	.stats-bar .container { flex-wrap: wrap; }
	.stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.stat-item h3 { font-size: 24px; }
	.footer-main,
	.site-footer .container { flex-direction: column; gap: 30px; }
.nav-primary { display: none !important; }
	.btn-menu-toggle { display: block !important; }
	.nav-primary.active { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #ffffff; box-shadow: 0 8px 32px rgba(27,42,74,0.12); padding: 16px 0; z-index: 200; }
	.nav-primary.active ul { flex-direction: column; }
	.nav-primary.active a { padding: 12px 30px; display: block; }
	.nav-primary.active ul.sub-menu { position: static; box-shadow: none; border: none; border-radius: 0; padding-left: 20px; }
	.header-right .btn { padding: 9px 18px; font-size: 12px; }
	.cta-banner h2 { font-size: 26px; }
	.cta-banner-btns { flex-direction: column; align-items: center; }
	.step::after { display: none; }
	.hero-right { order: -1; }
}

/* ========== Global Fade-In Fix ========== */
/* Force all fade-in sections to be visible - fixes broken IntersectionObserver */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* ========== Why Free Bibles Page Fixes ========== */
.section-title {
    color: var(--navy) !important;
}
.text-column h3,
.card h3,
.card h4 {
    color: var(--navy) !important;
}

/* Why Free Bibles Matter section - framed box with centered content */
.section.section-bg-light {
    border: 3px solid #1B2A4A !important;
    border-radius: 14px !important;
    padding: 50px 40px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1000px !important;
    text-align: center !important;
    background: #f0f4fa !important;
}
.section.section-bg-light .section-title {
    text-align: center !important;
    color: #1B2A4A !important;
    margin-bottom: 30px !important;
}
.section.section-bg-light .two-column {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 40px !important;
    text-align: center !important;
}
.section.section-bg-light .text-column {
    text-align: center !important;
    flex: 1 1 400px !important;
    max-width: 450px !important;
}
.section.section-bg-light .text-column h3 {
    text-align: center !important;
    color: #1B2A4A !important;
    margin-bottom: 16px !important;
}
.section.section-bg-light .text-column p,
.section.section-bg-light .text-column li {
    text-align: center !important;
    color: #3a4a60 !important;
}
.section.section-bg-light .checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 auto !important;
}
.section.section-bg-light .checklist li {
    padding: 6px 0 !important;
}
.section.section-bg-light .checklist li::before {
    content: "\2713  " !important;
    color: #E8913A !important;
    font-weight: 700 !important;
}, modern ministry theme for Free Urdu Bibles - Good Samaritan Ministries Pakistan
Author: Good Samaritan Ministries Pakistan
Author URI: https://gsministries.org
Version: 2.1.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fub-theme-2026
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
	--navy: #1B2A4A;
	--navy-dark: #0F1D36;
	--navy-light: #2C4070;
	--orange: #E8913A;
	--orange-dark: #D47820;
	--orange-light: #F0A050;
	--bg-light: #FAFAFA;
	--bg-off: #F0F4FA;
	--white: #FFFFFF;
	--text-dark: #1B2A4A;
	--text-body: #5A6880;
	--text-muted: #8899BB;
	--border: #E8ECF2;
	--border-light: #F0F0F0;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text-body);
	background: var(--bg-light);
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
	background: var(--navy-dark);
	padding: 9px 0;
	font-size: 12px;
	color: var(--text-muted);
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar a { color: var(--orange); font-weight: 500; }
.topbar a:hover { color: var(--orange-light); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { color: var(--text-muted); font-size: 12px; }
.topbar-right a:hover { color: var(--orange); }

/* ============================================
   HEADER
   ============================================ */
#site-header,
.site-header,
.header {
	background: var(--white);
	padding: 14px 0;
	box-shadow: 0 2px 24px rgba(27,42,74,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}
#site-header .container,
.site-header .container,
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.site-branding,
.logo { display: flex; align-items: center; gap: 14px; }
.site-branding a { text-decoration: none; }
#site-header .site-title { display: none; }
.custom-logo-link img,
.logo img {
	max-height: 55px;
	width: auto;
}

/* Navigation */
.nav-primary,
.nav {
	display: flex;
	gap: 6px;
	align-items: center;
}
.nav-primary a,
.nav a {
	color: var(--text-body);
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	padding: 8px 12px;
	white-space: nowrap;
	position: relative;
	transition: color 0.3s;
}
.nav-primary a:hover,
.nav a:hover { color: var(--navy); }
.nav-primary a::after,
.nav a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 12px;
	right: 12px;
	height: 2px;
	background: var(--orange);
	transform: scaleX(0);
	transition: transform 0.3s;
}
.nav-primary a:hover::after,
.nav a:hover::after { transform: scaleX(1); }

/* Dropdown Menus */
.nav-primary > ul { list-style: none; display: flex; gap: 0; align-items: center; }
.nav-primary li { position: relative; }
.nav-primary ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	min-width: 220px;
	box-shadow: 0 8px 32px rgba(27,42,74,0.12);
	border-radius: 10px;
	padding: 8px 0;
	z-index: 200;
	flex-direction: column;
	border: 1px solid var(--border);
}
.nav-primary li:hover > ul.sub-menu { display: flex; }
.nav-primary .sub-menu a {
	padding: 10px 20px;
	font-size: 13px;
	display: block;
	white-space: nowrap;
}
.nav-primary .sub-menu a:hover { background: var(--bg-off); color: var(--orange); }
.nav-primary .sub-menu a::after { display: none; }
.menu-item-has-children > a::after {
	content: '▾';
	margin-left: 4px;
	font-size: 10px;
}

/* Header Right / CTA */
.header-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 0.5rem;
}
.header-right .btn,
.nav .cta-btn {
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white) !important;
	padding: 11px 26px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 14px rgba(232,145,58,0.3);
	transition: all 0.3s;
	white-space: nowrap;
}
.header-right .btn::after,
.nav .cta-btn::after { display: none !important; }
.header-right .btn:hover,
.nav .cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(232,145,58,0.4);
}

/* Mobile Menu Toggle */
.menu-toggle,
.btn-menu-toggle {
	display: none !important;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--navy);
	padding: 4px 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
	padding: 90px 0 85px;
	background: linear-gradient(135deg, var(--bg-off) 0%, var(--bg-light) 50%, #FFFBF6 100%);
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -8%;
	width: 650px;
	height: 650px;
	background: radial-gradient(circle, rgba(232,145,58,0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -8%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(27,42,74,0.04) 0%, transparent 70%);
	border-radius: 50%;
}
.hero .container {
	display: flex;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.hero-left { flex: 1.15; }
.hero-right { flex: 0.85; }

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 30px;
	padding: 7px 18px;
	margin-bottom: 22px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.hero-badge .pulse-dot {
	width: 8px;
	height: 8px;
	background: #4CAF50;
	border-radius: 50%;
	display: inline-block;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.hero-badge span {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--navy);
	font-weight: 600;
}

/* Hero Title */
.hero-title,
.hero h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 46px;
	line-height: 1.12;
	color: var(--navy);
	font-weight: 700;
	margin-bottom: 18px;
}
.hero-title .highlight,
.hero h2 .highlight,
.hero-title span {
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hero Description */
.hero-left > p,
.hero .hero-description {
	font-size: 16px;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 500px;
}

/* Hero Buttons */
.hero-btns {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 30px;
}
.hero-btns .btn-primary,
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white);
	padding: 15px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	box-shadow: 0 4px 18px rgba(232,145,58,0.3);
	transition: all 0.3s;
	text-decoration: none;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(232,145,58,0.4);
	color: var(--white);
}
.hero-btns .btn-secondary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	color: var(--navy);
	padding: 15px 32px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	border: 1.5px solid var(--border);
	transition: all 0.3s;
	text-decoration: none;
}
.btn-secondary:hover { border-color: var(--navy); }

/* Hero Trust */
.hero-trust {
	display: flex;
	align-items: center;
	gap: 16px;
}
.hero-trust .check,
.hero-trust .trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

/* Hero Card */
.hero-card {
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 16px 56px rgba(27,42,74,0.1);
	border: 1px solid var(--border-light);
}
.hero-card-img {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 16px;
}
.hero-card-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}
.hero-card-bottom { padding: 0 6px 4px; }
.hero-card-bottom h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 4px;
}
.hero-card-bottom p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
	background: var(--navy);
}
.stats-bar .container {
	display: flex;
}
.stat-item {
	flex: 1;
	text-align: center;
	padding: 36px 20px;
	border-right: 1px solid rgba(255,255,255,0.08);
	transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	color: var(--orange);
	font-weight: 700;
	line-height: 1;
}
.stat-item p,
.stat-item .stat-label {
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-top: 6px;
	font-weight: 500;
}

/* ============================================
   SECTION HEADINGS (shared)
   ============================================ */
.section-head {
	text-align: center;
	margin-bottom: 50px;
}
.section-head .overline,
.overline {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--orange);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}
.section-head h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	color: var(--navy);
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}
.section-head p {
	color: var(--text-muted);
	font-size: 15px;
	max-width: 560px;
	margin: 0 auto;
}

/* ============================================
   WHAT WE DO CARDS
   ============================================ */
.what-we-do {
	padding: 90px 0;
	background: var(--bg-light);
}
.cards-grid {
	display: flex;
	gap: 24px;
}
.card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 4px 24px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
	overflow: hidden;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 44px rgba(27,42,74,0.1);
}
.card-img-wrap {
	width: 100%;
	overflow: hidden;
}
.card-img-wrap img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.card:hover .card-img-wrap img {
	transform: scale(1.05);
}
.card-icon {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(232,145,58,0.12), rgba(232,145,58,0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 24px 26px 16px;
}
.card h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	color: var(--navy);
	font-weight: 600;
	margin: 0 26px 10px;
}
.card p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	margin: 0 26px 14px;
}
.card .card-link {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 26px 26px;
	transition: gap 0.3s;
}
.card .card-link:hover { gap: 10px; }

/* ============================================
   STORY SPLIT SECTION
   ============================================ */
.story-section {
	padding: 90px 0;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.story-section .container {
	display: flex;
	gap: 55px;
	align-items: center;
}
.story-img-wrap {
	flex: 1;
	position: relative;
}
.story-img {
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 44px rgba(27,42,74,0.15);
	position: relative;
}
.story-img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}
.story-img-badge {
	position: absolute;
	bottom: -14px;
	right: 20px;
	background: var(--orange);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(232,145,58,0.35);
}
.story-text { flex: 1; }
.story-text .overline {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: var(--orange);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.story-text .overline::before {
	content: '';
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--orange), transparent);
}
.story-text h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: var(--navy);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 18px;
}
.story-text p {
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 14px;
}
.story-text .read-more,
.read-more {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: var(--orange);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	transition: gap 0.3s;
}
.read-more:hover { gap: 10px; }

/* ============================================
   BIBLE TYPES
   ============================================ */
.bible-types {
	padding: 90px 0;
	background: var(--bg-off);
	border-top: 1px solid var(--border-light);
}
.types-grid {
	display: flex;
	gap: 20px;
}
.type-card {
	flex: 1;
	background: var(--white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
	text-align: center;
}
.type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(27,42,74,0.1);
}
.type-card-top {
	height: 120px;
	background: linear-gradient(135deg, var(--navy), var(--navy-light));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
}
.type-card:nth-child(even) .type-card-top {
	background: linear-gradient(135deg, #2C4070, #1B2A4A);
}
.type-card-body { padding: 22px 18px; }
.type-card-body h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 6px;
}
.type-card-body p {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
	padding: 90px 0;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.process-steps {
	display: flex;
	gap: 20px;
}
.step {
	flex: 1;
	text-align: center;
	padding: 30px 20px;
	position: relative;
}
.step::after {
	content: '\2192';
	position: absolute;
	right: -12px;
	top: 50px;
	font-size: 24px;
	color: var(--border);
}
.step:last-child::after { display: none; }
.step-num {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(232,145,58,0.25);
}
.step h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 8px;
}
.step p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
	padding: 90px 0;
	background: linear-gradient(135deg, var(--bg-off) 0%, #FFFBF6 100%);
	border-top: 1px solid var(--border-light);
}
.testimonial-grid {
	display: flex;
	gap: 24px;
}
.testimonial-card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	padding: 30px 24px;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	position: relative;
}
.testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 50px;
	color: var(--orange);
	opacity: 0.2;
	font-family: Georgia, serif;
	line-height: 1;
}
.testimonial-card .stars {
	color: var(--orange);
	font-size: 16px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}
.testimonial-card p {
	font-size: 14px;
	color: var(--text-body);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 18px;
}
.testimonial-card .author {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--border-light);
	padding-top: 14px;
}
.testimonial-card .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--navy), var(--navy-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}
.testimonial-card .author-info h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--navy);
	font-weight: 600;
}
.testimonial-card .author-info span {
	font-size: 11px;
	color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.cta-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23E8913A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container {
	max-width: 700px;
	position: relative;
	z-index: 2;
}
.cta-banner h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 34px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.25;
}
.cta-banner h2 span { color: var(--orange); }
.cta-banner p {
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 32px;
	line-height: 1.7;
}
.cta-banner-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
}
.cta-banner .cb1 {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white);
	padding: 15px 36px;
	border-radius: 10px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	box-shadow: 0 4px 18px rgba(232,145,58,0.3);
	transition: all 0.3s;
}
.cta-banner .cb1:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(232,145,58,0.45);
	color: var(--white);
}
.cta-banner .cb2 {
	display: inline-flex;
	align-items: center;
	background: transparent;
	border: 1.5px solid rgba(232,145,58,0.4);
	color: var(--orange);
	padding: 15px 36px;
	border-radius: 10px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	transition: all 0.3s;
}
.cta-banner .cb2:hover {
	border-color: var(--orange);
	background: rgba(232,145,58,0.08);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview {
	padding: 90px 0;
	background: var(--bg-light);
	border-top: 1px solid var(--border-light);
}
.blog-grid {
	display: flex;
	gap: 24px;
}
.blog-card {
	flex: 1;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(27,42,74,0.05);
	border: 1px solid var(--border-light);
	transition: all 0.3s;
}
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(27,42,74,0.1);
}
.blog-card .blog-thumbnail,
.blog-card-img {
	height: 180px;
	overflow: hidden;
}
.blog-card .blog-thumbnail img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.blog-card:hover .blog-thumbnail img {
	transform: scale(1.05);
}
.blog-card-body { padding: 22px 20px; }
.blog-card-body .blog-date,
.blog-card-body .date {
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 8px;
	display: block;
}
.blog-card-body h4,
.blog-card-body .blog-title {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}
.blog-card-body .blog-title a {
	color: var(--navy);
}
.blog-card-body .blog-title a:hover {
	color: var(--orange);
}
.blog-card-body p,
.blog-card-body .blog-excerpt {
	font-size: 13px;
	color: var(--text-body);
	line-height: 1.6;
	margin-bottom: 12px;
}
.blog-card-body a.blog-readmore,
.blog-card-body > a {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
}

/* ============================================
   SCRIPTURE QUOTE
   ============================================ */
.scripture-quote {
	padding: 65px 0;
	text-align: center;
	background: var(--white);
	border-top: 1px solid var(--border-light);
}
.scripture-quote blockquote {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 22px;
	color: var(--navy);
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
}
.scripture-quote cite {
	display: block;
	margin-top: 14px;
	font-style: normal;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--orange);
	font-weight: 600;
	letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer,
.footer {
	background: var(--navy-dark);
}
.footer-main,
.site-footer .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 55px 30px 40px;
	display: flex;
	gap: 40px;
}
.footer-col { flex: 1; }
.footer-col:first-child { flex: 1.4; }
.footer-col h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: var(--orange);
	font-weight: 600;
	margin-bottom: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.footer-col p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 12px;
}
.footer-col a {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 10px;
	transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col .contact-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 8px;
}
.footer-bar,
.site-footer .footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 18px 30px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.footer-bar p {
	font-size: 12px;
	color: #4A6080;
}
.footer-bar a { color: var(--orange); }

/* ============================================
   PAGE TEMPLATES (generic pages)
   ============================================ */
.page-content,
.entry-content {
	padding: 60px 0;
}
.page-content .container,
.entry-content .container {
	max-width: 900px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
	font-family: 'Poppins', sans-serif;
	color: var(--navy);
	margin-bottom: 16px;
}
.entry-content p {
	margin-bottom: 16px;
	line-height: 1.8;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.wp-block-image img { border-radius: 12px; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.wp-block-separator { border-color: var(--border); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.nav-primary { gap: 2px; }
	.nav-primary a { padding: 8px 8px; font-size: 13px; }
}

@media (max-width: 768px) {
	.hero .container,
	.story-section .container { flex-direction: column !important; }
	.cards-grid,
	.types-grid,
	.process-steps,
	.testimonial-grid,
	.blog-grid { flex-direction: column; }
	.hero-title,
	.hero h2 { font-size: 32px; }
	.hero { padding: 50px 0; }
	.what-we-do,
	.story-section,
	.bible-types,
	.process-section,
	.testimonials,
	.blog-preview { padding: 60px 0; }
	.stats-bar .container { flex-wrap: wrap; }
	.stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.stat-item h3 { font-size: 24px; }
	.footer-main,
	.site-footer .container { flex-direction: column; gap: 30px; }
.nav-primary { display: none !important; }
	.btn-menu-toggle { display: block !important; }
	.nav-primary.active { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #ffffff; box-shadow: 0 8px 32px rgba(27,42,74,0.12); padding: 16px 0; z-index: 200; }
	.nav-primary.active ul { flex-direction: column; }
	.nav-primary.active a { padding: 12px 30px; display: block; }
	.nav-primary.active ul.sub-menu { position: static; box-shadow: none; border: none; border-radius: 0; padding-left: 20px; }
	.header-right .btn { padding: 9px 18px; font-size: 12px; }
	.cta-banner h2 { font-size: 26px; }
	.cta-banner-btns { flex-direction: column; align-items: center; }
	.step::after { display: none; }
	.hero-right { order: -1; }
}

/* ========== Global Fade-In Fix ========== */
/* Force all fade-in sections to be visible - fixes broken IntersectionObserver */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* ========== Why Free Bibles Page Fixes ========== */
/* Section titles visible with dark color */
.section-title {
    color: var(--navy) !important;
}
.text-column h3,
.card h3,
.card h4 {
    color: var(--navy) !important;
}

/* Why Free Bibles Matter box - framed with centered text */
.highlight-box,
.why-matter-box,
.history-box {
    border: 2px solid var(--navy) !important;
    border-radius: 12px !important;
    padding: 30px !important;
    text-align: center !important;
}
.highlight-box h3,
.highlight-box h4,
.why-matter-box h3,
.why-matter-box h4,
.history-box h3,
.history-box h4 {
    color: var(--navy) !important;
    text-align: center !important;
}
.highlight-box p,
.why-matter-box p,
.history-box p {
    text-align: center !important;
}


/* ========== Header Nav Enhancements ========== */
/* Increase header bar height */
.site-header {
    min-height: 75px !important;
}
.site-header .container {
    min-height: 75px !important;
}
.header-inner {
    min-height: 75px !important;
}

/* Increase nav menu font size */
.nav-primary .nav-menu > li > a {
    font-size: 17px !important;
    font-weight: 600 !important;
}

/* Donate button styling */
.nav-primary .nav-menu > li.menu-item-129 > a {
    background-color: #E8913A !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    text-decoration: none !important;
}
.nav-primary .nav-menu > li.menu-item-129 > a:hover {
    background-color: #D47820 !important;
    transform: translateY(-1px);
    color: #fff !important;
}

/* Submenu dropdown - left align text */
.nav-primary ul.sub-menu {
    align-items: stretch !important;
    text-align: left !important;
}
.nav-primary .sub-menu li {
    text-align: left !important;
}
.nav-primary .sub-menu li a {
    text-align: left !important;
    padding-left: 20px !important;
    padding-right: 30px !important;
}


/* ========== Footer Contact Info Styling ========== */
.footer-contact-info {
    margin-top: 12px !important;
}
.footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
}
.footer-contact-item svg {
    flex-shrink: 0 !important;
    margin-top: 3px !important;
}
.footer-contact-item a:hover {
    color: #E8913A !important;
    text-decoration: underline !important;
}


/* ========== Footer Widget Text Colors ========== */
/* White text for all footer widget content (except headings) */
.footer-section p,
.footer-section li,
.footer-section a,
.footer-section span,
.footer-section .footer-contact-item a,
.footer-section .footer-contact-item span {
    color: rgba(255,255,255,0.85) !important;
}
/* Keep footer headings as they are (not overridden) */

/* Footer links hover */
.footer-section a:hover {
    color: #E8913A !important;
}

/* Copyright text white */
.footer-bottom,
.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
    color: rgba(255,255,255,0.75) !important;
}
.footer-bottom a:hover {
    color: #E8913A !important;
}

/* ========== Blog Post Content Fixes ========== */
/* Hide the duplicate H1 title inside post content (3rd heading) */
.post-content.entry-content > h1:first-child {
    display: none !important;
}

/* Justify post body text */
.post-content.entry-content {
    text-align: justify !important;
}
.post-content.entry-content p {
    text-align: justify !important;
    line-height: 1.8 !important;
}
.post-content.entry-content h2,
.post-content.entry-content h3,
.post-content.entry-content h4 {
    text-align: left !important;
}

/* Post title quote (italic blockquote heading) - center it */
.post-title-quote {
    text-align: center !important;
}
.post-title-quote h2 {
    text-align: center !important;
}

/* ========== Blog Post Share Icons ========== */
.single-share {
    margin-top: 30px !important;
    padding: 24px !important;
    border-top: 2px solid #e2e8f0 !important;
    text-align: center !important;
}
.single-share strong {
    display: block !important;
    margin-bottom: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    color: #1B2A4A !important;
}
.single-share-links {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.single-share-links a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    color: #fff !important;
    transition: opacity 0.2s ease !important;
}
.single-share-links a:hover {
    opacity: 0.85 !important;
}
.share-fb { background: #1877F2 !important; }
.share-tw { background: #1DA1F2 !important; }
.share-wa { background: #25D366 !important; }
.share-li { background: #0A66C2 !important; }
.share-email { background: #E8913A !important; }