/*
Theme Name: V Sharma Law
Description: Professional law firm theme for V Sharma Law
Version: 1.0.0
Text Domain: vsharmalaw
*/

/* ============================================================
   COLOURS  — change these to restyle the whole site
   ============================================================ */
:root {
	--red: #D0021B;
	--red-hover: #a8000f;
	--dark: #0a0a0a;
	--navy: #1B2444;
	--white: #ffffff;
	--light-grey: #f5f5f5;
	--text: #222222;
	--text-muted: #666666;
}


/* ============================================================
   FONTS
   ============================================================ */
:root {
	--font-heading: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Barlow', Arial, sans-serif;
}


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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	text-decoration: none;
	transition: color 0.2s;
}

ul {
	list-style: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	line-height: 1.2;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 38px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all 0.2s;
	cursor: pointer;
}

.btn-red {
	background: var(--red);
	color: var(--white);
	border: 2px solid var(--red);
}

.btn-red:hover {
	background: var(--red-hover);
	border-color: var(--red-hover);
	color: var(--white);
}

.btn-outline {
	background: var(--white);
	color: var(--dark);

}

.btn-outline:hover {
	background: var(--white);
	color: var(--dark);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 15px;
}


/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* --- Top row: Logo + Contact + Social --- */
.header-top-row {
	height: 70px;
	display: flex;
	align-items: center;
	gap: 32px;
}

/* Logo */
.header-logo { flex-shrink: 0; }

.header-logo img,
.header-logo .custom-logo {
	height: 36px;
	width: auto;
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
}

/* Contact */
.header-contact {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
}

.header-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 300;
	color: #333;
}

.header-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--white);
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
	transition: background 0.2s;
}

.header-contact-item:hover .header-icon { background: var(--red); }
.header-contact-item:hover              { color: var(--red); }

/* Social */
.header-social {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.header-social a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--white);
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	transition: background 0.2s, color 0.2s;
	border: 1px solid #ddd;
}

.header-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Thin divider line */
.header-line {
	height: 1px;
	background: #e0e0e0;
}

/* --- Nav row --- */
.header-nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-menu {
	display: flex;
	align-items: center;
}

.nav-menu li a {
	display: block;
	padding: 14px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #333;
	white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu .current-menu-item>a {
	color: var(--red);
}

/* Hamburger */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--dark);
	transition: all 0.25s;
}

/* ============================================================
   TRANSPARENT HEADER — front page overlays hero
   rgba(26,26,26,0.3) as per Figma design
   ============================================================ */
.header-transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 26, 0.3) !important;
	box-shadow: none !important;
}

.header-transparent .header-line                       { background: rgba(255,255,255,0.2); }
.header-transparent .logo-text                         { color: var(--white); }
.header-transparent .header-contact-item              { color: var(--white); }
.header-transparent .header-icon                      { background: var(--white	); color: var(--dark); }
.header-transparent .header-contact-item:hover .header-icon { background: var(--red); }
.header-transparent .header-social a                  { background: var(--white); color: var(--dark); border-color: transparent; }
.header-transparent .header-social a:hover            { background: var(--red); color: var(--white); }
.header-transparent .nav-menu li a                    { color: var(--white); }
.header-transparent .nav-menu li a:hover,
.header-transparent .nav-menu .current-menu-item > a  { color: var(--white); }
.header-transparent .menu-toggle span                 { background: var(--white); }


/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999;
	pointer-events: none;
}

.mobile-menu.open {
	pointer-events: all;
}

.mobile-menu-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.25s;
}

.mobile-menu.open .mobile-menu-overlay {
	opacity: 1;
}

.mobile-menu-drawer {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	background: var(--dark);
	padding: 24px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow-y: auto;
}

.mobile-menu.open .mobile-menu-drawer {
	transform: translateX(0);
}

.mobile-menu-close {
	align-self: flex-end;
	background: none;
	border: none;
	color: var(--white);
	font-size: 22px;
	cursor: pointer;
}

.mobile-nav-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-menu li a {
	display: block;
	padding: 14px 0;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mobile-nav-menu li a:hover {
	color: var(--red);
}

.mobile-phone {
	color: #aaa;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.mobile-phone:hover {
	color: var(--red);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
/* ---- Hero Slider wrapper ---- */
.hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	background: var(--dark);
	/* Pull up so slider sits behind the transparent header */
	margin-top: -134px;
}

/* Each slide */
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
	min-height: 100vh;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 320px 24px 180px;
	width: 100%;
}

/* Hero heading */
.hero-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 500;
	font-size: 128px;
	line-height: 85%;
	color: #ffffff;
	margin-bottom: 24px;
}

/* Hero paragraph */
.hero-text {
	font-family: 'Barlow', Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #ffffff;
	max-width: 500px;
	margin-bottom: 40px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Prev / Next arrows */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.25s, border-color 0.25s;
}

.slider-arrow:hover {
	background: var(--red);
	border-color: var(--red);
}

.slider-prev {
	left: 32px;
}

.slider-next {
	right: 32px;
}



/* ============================================================
   STATS BAR  — matches Figma exactly
   ============================================================ */
.stats-bar {
	background: transparent;
	margin-top: -90px;
	position: relative;
	z-index: 10;
	padding: 0 24px;
}

.stats-container {
	max-width: 1200px;
	margin: 0 auto;
	background: #151c32;
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	padding: 0 64px;
	box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.06);
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 56px 0;
}

/* Number: Barlow Medium 48px — from Figma */
.stat-number {
	font-family: 'Barlow', sans-serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 0.85;
	color: var(--white);
	margin-bottom: 12px;
}

/* Label: Barlow Light 24px — from Figma */
.stat-label {
	font-family: 'Barlow', sans-serif;
	font-size: 24px;
	font-weight: 300;
	line-height: 0.85;
	color: var(--white);
}

.stat-divider {
	width: 2px;
	height: 120px;
	background: #ffffff;
	margin: 0 40px;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
	padding: 140px 24px 96px;
	position: relative;
	overflow: hidden;
	background: #fff;
}

/* Animated red glow orb — top right */
.about-section::before {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(208,2,27,0.07) 0%, transparent 65%);
	top: -200px;
	right: -200px;
	pointer-events: none;
	z-index: 0;
	animation: about-orb-1 7s ease-in-out infinite;
}

/* Animated navy glow orb — bottom left */
.about-section::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(27,36,68,0.06) 0%, transparent 65%);
	bottom: -150px;
	left: 10%;
	pointer-events: none;
	z-index: 0;
	animation: about-orb-2 9s ease-in-out infinite;
}

@keyframes about-orb-1 {
	0%, 100% { transform: scale(1) translate(0, 0);   opacity: 0.7; }
	50%       { transform: scale(1.15) translate(-20px, 20px); opacity: 1; }
}

@keyframes about-orb-2 {
	0%, 100% { transform: scale(1) translate(0, 0);   opacity: 0.6; }
	50%       { transform: scale(1.2) translate(20px, -20px); opacity: 1; }
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.about-image {
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.about-content {
	padding: 60px 60px;
}

/* Section label (small red text above headings) */
.section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--red);
	border-bottom: 2px solid var(--red);
	padding-bottom: 6px;
	margin-bottom: 12px;
	width: 50%;
}

.section-label.light {
	color: #aaa;
	border-color: #aaa;
}

.about-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 72px;
	font-weight: 500;
	line-height: 60px;
	color: #1a1a1a;
	margin-bottom: 24px;
}

.about-content p {
	font-family: 'Barlow', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #1a1a1a;
	line-height: 28px;
	margin-bottom: 16px;
}

.red-line {
	border: none;
	border-top: 2px solid var(--red);
	margin: 24px 0;
	width: 100%;
}

.about-quote {
	font-family: 'Barlow', sans-serif;
	font-size: 40px !important;
	font-weight: 300;
	color: #1a1a1a !important;
	line-height: 54px;
}


/* ============================================================
   FEATURED PRACTICE AREAS — 4-col full-width strip
   ============================================================ */
.fp-section {
	width: 100%;
}

.fp-grid {
	display: grid;
	/* Col 1 (intro) = 2fr (~40%)  |  Cols 2-4 (cards) = 1fr (~20%) each */
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	min-height: 380px;
	background-color: #151c32;
}

/* Col 1 — intro */
.fp-intro {
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fp-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-bottom: 20px;
}

.fp-intro-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 20px;
}

.fp-line {
	border: none;
	border-top: 2px solid var(--red);
	width: 48px;
	margin: 0 0 20px 0;
}

.fp-intro p {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	line-height: 1.8;
}

/* Cols 2 & 3 — standard cards */
.fp-card {
	position: relative;
	overflow: hidden;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	border-left: 1px solid rgba(255,255,255,0.07);
	transition: background 0.4s;
	background: #1e2a4a;
}

/* Hover background image reveal for cards 2 & 3 */
.fp-card:nth-child(2)::before { background-image: url('assets/images/inner-bg.jpg'); }
.fp-card:nth-child(3)::before { background-image: url('assets/images/hero-bg.jpg'); }

.fp-card:nth-child(2)::before,
.fp-card:nth-child(3)::before {
	content: '';
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

/* Dark overlay on top of image */
.fp-card:nth-child(2)::after,
.fp-card:nth-child(3)::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10,10,30,0.72);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.fp-card:nth-child(2):hover::before,
.fp-card:nth-child(3):hover::before,
.fp-card:nth-child(2):hover::after,
.fp-card:nth-child(3):hover::after {
	opacity: 1;
}

.fp-card:hover { background: #1e2a4a; }

/* All card content above pseudo-elements */
.fp-card > * { position: relative; z-index: 2; }

/* Col 4 — dark image overlay card */
.fp-card.fp-card-dark {
	position: relative;
	background-size: cover;
	background-position: center;
}

.fp-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10,10,20,0.78);
	transition: background 0.4s;
	z-index: 0;
}

.fp-card.fp-card-dark:hover .fp-card-overlay { background: rgba(10,10,20,0.55); }

.fp-card-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	height: 100%;
}

.fp-icon {
	font-size: 36px;
	color: var(--white);
	margin-bottom: 0;
}

.fp-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0;
	line-height: 1.2;
}

.fp-card p {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	line-height: 1.8;
	margin-bottom: 0;
	flex: 1;
}

.fp-card-inner p {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	line-height: 1.8;
	margin-bottom: 0;
	flex: 1;
}

.fp-btn {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid rgba(255,255,255,0.5);
	color: var(--white);
	font-size: 13px;
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: background 0.2s, border-color 0.2s;
	align-self: flex-start;
	margin-top: 0;
}

.fp-btn:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}


/* ============================================================
   AREAS OF EXPERTISE
   ============================================================ */
.expertise-section {
	padding: 96px 24px;
	background: var(--white);
}

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

.expertise-header {
	text-align: center;
	margin-bottom: 64px;
}

.expertise-subtitle {
	display: block;
	font-family: var(--font-heading);
	font-size: 16px;
	font-style: italic;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.expertise-title {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 16px;
}

.expertise-line {
	border: none;
	border-top: 2px solid var(--red);
	width: 48px;
	margin: 0 auto;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 56px;
	column-gap: 40px;
}

.expertise-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.expertise-top {
	display: flex;
	align-items: center;
	gap: 16px;
}

.expertise-icon {
	font-size: 32px;
	color: var(--dark);
	flex-shrink: 0;
	width: 40px;
	text-align: center;
}

.expertise-item h3 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.2;
}

.expertise-item p {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.75;
	padding-left: 56px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
	padding: 96px 0;
	background: var(--white);
}

.why-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.why-content h2 {
	font-size: 44px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
}

.why-content>p {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 36px;
}

.why-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	color: var(--text);
}

.why-list i {
	color: var(--red);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.why-image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 4px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
	position: relative;
	background-image: url('assets/images/cta-bg.jpg');
	background-size: cover;
	background-position: center;
	padding: 96px 0;
	text-align: center;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, 0.82);
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.cta-content h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
}

.cta-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--dark);
	color: var(--white);
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 24px 48px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer-logo-text {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	display: block;
	margin-bottom: 16px;
}

.footer-tagline {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	margin-bottom: 24px;
}

.footer-social {
	display: flex;
	gap: 8px;
}

.footer-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.footer-social a:hover {
	background: var(--red);
}

.footer-col h4 {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
	color: var(--red);
}

.footer-contact-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 14px;
}

.footer-contact-list i {
	color: var(--red);
	margin-top: 3px;
	flex-shrink: 0;
}

.footer-contact-list a {
	color: inherit;
}

.footer-contact-list a:hover {
	color: var(--red);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px 24px;
}

.footer-bottom-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-inner a {
	color: inherit;
}

.footer-bottom-inner a:hover {
	color: var(--red);
}


/* ============================================================
   INNER PAGE HERO  (About, Blog, etc.)
   ============================================================ */
.page-hero {
	position: relative;
	background-image: url('assets/images/inner-bg.jpg');
	background-size: cover;
	background-position: center;
	padding: 80px 0;


}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, 0.75);
}

.page-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.page-hero-content h1 {
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;

}

.breadcrumb {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
	color: var(--red);
}


/* ============================================================
   BLOG & SINGLE POST
   ============================================================ */
.site-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 24px;
}

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

.blog-card {
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.blog-card-image {
	display: block;
	overflow: hidden;
	height: 200px;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

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

.blog-card-body {
	padding: 24px;
}

.blog-card-meta {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.blog-card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog-card-title a {
	color: var(--dark);
}

.blog-card-title a:hover {
	color: var(--red);
}

.blog-card-excerpt {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 16px;
}

.blog-card-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}


/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
	text-align: center;
	padding: 80px 24px;
}

.error-404-code {
	font-size: 160px;
	font-weight: 900;
	color: #f0f0f0;
	line-height: 1;
}

.error-404 h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

.error-404 p {
	color: var(--text-muted);
	margin-bottom: 28px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 80px;
	}

	.about-container {
		grid-template-columns: 1fr;
	}

	.about-content {
		padding: 48px 24px;
	}

	.why-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.why-image {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.fp-grid {
		grid-template-columns: 1fr 1fr;
	}

	.stats-container {
		grid-template-columns: 1fr 1fr 1fr;
		padding: 0 24px;
	}

	.stat-divider {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 52px;
	}

	.hero-text {
		font-size: 16px;
		line-height: 1.6;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.topbar-left {
		gap: 16px;
	}

	.site-nav {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.stats-container {
		grid-template-columns: 1fr;
		padding: 0 24px;
	}

	.stats-bar {
		margin-top: -60px;
	}

	.fp-grid {
		grid-template-columns: 1fr;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.section-header h2 {
		font-size: 32px;
	}

	.about-title {
		font-size: 36px;
	}

	.why-content h2 {
		font-size: 32px;
	}

	.cta-content h2 {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 40px;
	}

	.topbar-left span {
		display: none;
	}
}