/*
Theme Name: Achman Starter
Theme URI: https://example.com/achman-starter
Author: Your Name
Author URI: https://example.com
Description: A modern WordPress starter theme with animated hero slider and navigation menu.
Version: 1.0.0
License: GPL v2 or later
Text Domain: achman-starter
*/

/* ===== Variables ===== */
:root {
	--primary-saffron: #E67E22;
	--primary-gold: #D4AF37;
	--soft-grey: #F5F5F5;
	--white: #FFFFFF;
	--dark-grey: #333333;
	--gradient-primary: linear-gradient(135deg, var(--primary-saffron), var(--primary-gold));
	--shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.1);
	--transition-smooth: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--dark-grey);
	background-color: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
}


/* ===== TYPOGRAPHY SYSTEM ===== */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Font Families */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Base Sizes (for clamp calculations) */
    --fs-base: 16px;  /* Default browser size */
    --fs-scale: 1.2;  /* Minor third scale for headings */

    /* Fluid Type Scale using clamp() */
    /* Desktop sizes: */
    --fs-h1: clamp(2.5rem, 5vw, 4rem);        /* 40px – 64px */
    --fs-h2: clamp(2rem, 4vw, 3rem);          /* 32px – 48px */
    --fs-h3: clamp(1.5rem, 3vw, 2rem);        /* 24px – 32px */
    --fs-h4: clamp(1.25rem, 2.5vw, 1.5rem);   /* 20px – 24px */
    --fs-h5: clamp(1.125rem, 2vw, 1.25rem);   /* 18px – 20px */
    --fs-h6: clamp(1rem, 1.5vw, 1.125rem);    /* 16px – 18px */
    --fs-body: clamp(1rem, 1.2vw, 1.125rem);  /* 16px – 18px */
    --fs-small: clamp(0.875rem, 1vw, 1rem);   /* 14px – 16px */

    /* Line Heights */
    --lh-tight: 1.2;
    --lh-normal: 1.5;
    --lh-loose: 1.8;

    /* Letter Spacing */
    --ls-normal: normal;
    --ls-wide: 0.02em;
    --ls-wider: 0.05em;

    /* Max Width for Readability */
    --max-width-read: 700px;
}

/* Base Body Styles */
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--dark-grey);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--lh-tight);
    margin-bottom: 0.5em;
    
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: var(--fs-h5);
}

h6 {
    font-size: var(--fs-h6);
}

/* Paragraphs */
p {
    margin-bottom: 1.5rem;
    line-height: var(--lh-normal);
}

/* Links */
a {
    color: var(--primary-saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
/*     color: var(--primary-gold); */
}

/* Buttons */
button,
.btn,
.button {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    line-height: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Navigation Menu */
.main-navigation .menu a {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--dark-grey);
}

.main-navigation .menu ul.sub-menu a {
    font-size: calc(var(--fs-small) * 0.9);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

/* Card Titles */
.card-title,
.service-title,
.priest-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    line-height: var(--lh-tight);
    margin-bottom: 0.5rem;
}

/* Card Descriptions */
.card-description,
.service-description,
.priest-experience {
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--dark-grey);
    opacity: 0.9;
}

/* Section Titles and Subtitles */
.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-h5);
    font-weight: 400;
    text-align: center;
    color: var(--primary-saffron);
    margin-bottom: 3rem;
}

/* Hero Section Titles */
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: var(--lh-tight);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: 400;
    line-height: var(--lh-normal);
    max-width: var(--max-width-read);
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonial-text {
    font-size: var(--fs-body);
    font-style: italic;
    line-height: var(--lh-loose);
    color: var(--dark-grey);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--primary-saffron);
}

/* Blog Post Content */
.post-content {
    font-size: var(--fs-body);
    line-height: var(--lh-loose);
    max-width: var(--max-width-read);
    margin: 0 auto;
}

.post-content h2 {
    font-size: var(--fs-h3);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-size: var(--fs-h4);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
}

.post-content blockquote {
    font-size: var(--fs-h5);
    font-style: italic;
    line-height: var(--lh-loose);
    border-left: 4px solid var(--primary-saffron);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Footer */
.site-footer {
    font-size: var(--fs-small);
    line-height: var(--lh-normal);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Responsive Adjustments (fine-tuning for tablets) */
@media (max-width: 992px) {
    :root {
        --fs-h1: clamp(2.2rem, 4.5vw, 3.5rem);
        --fs-h2: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --fs-h1: clamp(2rem, 6vw, 2.5rem);
        --fs-h2: clamp(1.5rem, 5vw, 2rem);
        --fs-h3: clamp(1.3rem, 4vw, 1.5rem);
    }

    .section-title {
        font-size: var(--fs-h2);
    }

    .hero-title {
        font-size: var(--fs-h1);
    }

    .hero-subtitle {
        font-size: var(--fs-h4);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    :root {
        --fs-h1: clamp(1.8rem, 7vw, 2.2rem);
    }

    body {
        font-size: var(--fs-body);
    }
}





/* ===== 3-Layer Header Styles ===== */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative; /* static */
	width: 100%;
	z-index: 1000;
}

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

/* Top Bar */
.top-bar {
	background: var(--soft-grey);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	font-size: 0.9rem;
	padding: 8px 0;
	color: var(--dark-grey);
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left .top-message {
	font-weight: 500;
}

.top-bar-right {
	display: flex;
	gap: 20px;
	align-items: center;
}

.top-bar-right .search-icon,
.top-bar-right .location {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: default;
}

/* Main Header */
.main-header {
	/*     padding: 20px 0; */
	background: var(--white);
}

.main-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.main-header-container .container{
	margin: 2px;
	padding: 2px;
}
@media(max-width: 767px){

	.main-header-container{
		gap: 2px;
	}

	.logo-area img {
		max-height: 70px !important;
	}
}

@media(max-width: 400px){

	.main-header-container .container{
		padding: 2px;
	}
}

.logo-area img {
	max-height: 90px;
	width: auto;
	padding-top: 5px;
}

.contact-blocks {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	display: none;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 20px;
	border: 1px solid var(--soft-grey);
	border-radius: 8px;
	background: var(--white);
	transition: var(--transition-smooth);
}

.contact-item:hover {
	border-color: var(--primary-saffron);
	box-shadow: var(--shadow-subtle);
}

.contact-icon {
	font-size: 2rem;
	line-height: 1;
}

.contact-details {
	display: flex;
	flex-direction: column;
}

.contact-number {
	font-weight: 700;
	color: var(--primary-saffron);
	font-size: 1.1rem;
}

.contact-label {
	font-size: 0.8rem;
	color: var(--dark-grey);
	opacity: 0.8;
}

/* Navigation Bar */
.nav-bar {
	background: var(--dark-grey);
	border-top: 3px solid transparent;
	border-image: var(--gradient-primary);
	border-image-slice: 1;
	padding: 0 20px;
}

.nav-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
}

/* Main Menu (Desktop) */
.main-navigation .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.main-navigation .menu li {
	position: relative;
}

.main-navigation .menu a {
	display: block;
	padding: 20px 0;
	/*     color: var(--white); */
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.95rem;
	transition: var(--transition-smooth);
	position: relative;
	color: #616161;
	font-weight: bold;
}

.main-navigation .menu a::after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.main-navigation .menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.main-navigation .menu a:hover {
	color: #e67e22;
	transform: translateY(-2px);
}

/* Submenu */
.main-navigation .menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--white);
	box-shadow: var(--shadow-subtle);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	border-radius: 4px;
	overflow: hidden;
	z-index: 10;
	padding: 8px 0;
}

.main-navigation .menu li:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .menu ul.sub-menu li {
	width: 100%;
}

.main-navigation .menu ul.sub-menu a {
	padding: 12px 20px;
	color: var(--dark-grey);
	background: var(--white);
	border-bottom: 1px solid var(--soft-grey);
	text-transform: none;
	font-weight: 400;
}

.main-navigation .menu ul.sub-menu a:hover {
	background: var(--soft-grey);
	color: var(--primary-saffron);
	transform: translateX(5px);
}

.main-navigation .menu ul.sub-menu a::after {
	display: none; /* Remove underline for submenu items */
}



/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 10px;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-saffron);
	margin: 3px 0;
	transition: var(--transition-smooth);
	border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.main-header-container {
		/*         flex-direction: column; */
		text-align: center;
	}
	.contact-blocks {
		justify-content: center;
	}
}

.app-cta-btn{
	display:inline-block;
	padding:14px 32px;
	margin-left: 20px;
	font-size:clamp(14px,1.2vw,16px);
	font-weight:600;
	text-decoration:none;
	color:#fff;

	background:linear-gradient(135deg,#ff7a18,#ffb347);
	border-radius:40px;

	box-shadow:0 8px 20px rgba(255,122,24,0.35);

	transition:all 0.35s ease;
	position:relative;
	overflow:hidden;
}

/* hover effect */
.app-cta-btn:hover{
	transform:translateY(-3px);
	box-shadow:0 12px 28px rgba(255,122,24,0.45);
}

/* shine animation */
.app-cta-btn::before{
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
	transition:0.6s;
}

.app-cta-btn:hover::before{
	left:100%;
}

/* mobile adjustment */
@media (max-width:768px){

	.app-cta-btn{
		padding:8px 22px;
		font-size:13px;
		margin-left: 1px;
	}
}

.app-cta-btn::before{
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(
		120deg,
		transparent,
		rgba(255,215,120,0.6),
		transparent
	);

	animation:shineMove 5s infinite;
}

/* hover lift */
.app-cta-btn:hover{
	transform:translateY(-3px);
	box-shadow:0 12px 28px rgba(255,122,24,0.45);
}

/* shine element */
.app-cta-btn::before{
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);

	animation:shineMove 5s infinite;
}

/* shine animation */
@keyframes shineMove{

	0%{
		left:-100%;
	}

	40%{
		left:100%;
	}

	100%{
		left:100%;
	}

}

.app-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #fffaf5, #ffffff);
    position: relative;
}

/* subtle spiritual glow */
.app-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.15), transparent 70%);
    z-index: 0;
}

.app-cta .container {
    position: relative;
    z-index: 2;
}

.app-cta h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.app-cta p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* buttons wrapper */
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* button style */
.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 26px;
    border-radius: 50px;

    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    background: #fff;
    color: #222;

    border: 2px solid rgba(255,122,24,0.2);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* saffron hover effect */
.app-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255,122,24,0.35);
}

/* shine effect */
.app-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.6s;
}

.app-btn:hover::before {
    left: 100%;
}

/* iOS button slight variation */
.ios-btn {
    border-color: rgba(0,0,0,0.1);
}

/* mobile */
@media (max-width:768px){
    .app-cta {
        padding: 50px 15px;
    }

    .app-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}



@media (max-width: 768px) {
	/* Adjust top bar */
	.top-bar-container {
		/*         flex-direction: column; */
		gap: 8px;
		text-align: center;
	}



	/* Hide main menu initially on mobile */
	.main-navigation .menu {
		display: none;
		flex-direction: column;
		width: 100%;
		background: var(--dark-grey);
		position: absolute;
		top: 100%;
		left: 0;
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		z-index: 999;
	}

	.main-navigation.menu-open .menu {
		display: flex;
	}

	.main-navigation .menu li {
		width: 100%;
	}

	.main-navigation .menu a {
		padding: 15px 0;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.main-navigation .menu a::after {
		bottom: 10px;
	}

	/* Submenu on mobile: hidden by default, toggled via JS */
	.main-navigation .menu ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		padding-left: 20px;
		display: none; /* hidden by default */
	}

	.main-navigation .menu ul.sub-menu.open {
		display: block;
	}

	.main-navigation .menu ul.sub-menu a {
		color: var(--white);
		background: transparent;
		border-bottom: none;
		padding: 10px 0;
	}

	.main-navigation .menu ul.sub-menu a:hover {
		background: transparent;
		color: var(--primary-gold);
	}

	/* Show hamburger */
	.menu-toggle {
		display: flex;
	}

	.nav-bar-container {
		flex-wrap: wrap;
	}


}

/* Hero section adjustment (since header is no longer fixed) */
.hero-slider {
	margin-top: 0; /* Remove previous fixed-header offset */
}
/* ===== Hero Slider ===== */
.hero-slider {
	position: relative;
	width: 100%;
	min-height: 700px;
	overflow: hidden;
	/*     margin-top: 80px;  */
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 700px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	display: flex;
	align-items: center;
	padding: 0 20%;
}

@media(max-width: 500px){
	

	.slide,.hero-slider {
		min-height: 350px;
	}
}


@media(max-width: 767px){

	.slide {
		height: 450px;
	}
	.hero-slider{
		min-height: 450px;
	}
	 
}




.slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 5;
}

.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	color: var(--white);
}

.slide-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	opacity: 0;
	transform: translateX(-50px);
	transition: none; /* Handled by animation */
}

.slide-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	opacity: 0;
	transform: translateY(50px);
}

.slide-button {
	display: inline-block;
	padding: 1rem 2.5rem !important;
	background: var(--gradient-primary);
	color: var(--white);
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	opacity: 0;
	transform: translateX(50px);
}

.slide-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Slide animations */
.slide.active .slide-title {
	animation: slideInLeft 0.6s ease forwards;
}

.slide.active .slide-subtitle {
	animation: slideInBottom 0.6s ease 0.2s forwards;
}

.slide.active .slide-button {
	animation: slideInRight 0.6s ease 0.4s forwards;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInBottom {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Slider controls */
.slider-prev,
.slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	padding: 0px;
	background: rgba(255,255,255,0.8);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	font-size: 1.5rem;
	color: var(--dark-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.slider-prev:hover,
.slider-next:hover {
	background: var(--primary-saffron);
	color: var(--white);
}

.slider-prev {
	left: 20px;
}

.slider-next {
	right: 20px;
}

.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background: rgba(255,255,255,0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.dot.active {
	background: var(--primary-saffron);
	transform: scale(1.2);
}

/* ===== Footer ===== */
/* ===== Footer ===== */
.site-footer {
	background: var(--dark-grey);
	color: var(--white);
	padding: 4rem 0 0;
	/*     margin-top: 4rem; */
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 3rem;
}

.footer-column img {
	max-width: 150px;
	height: auto;
}

.footer-title {
	color: var(--primary-gold);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gradient-primary);
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.8rem;
}

.footer-menu a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: var(--primary-saffron);
}

.contact-info {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-info li {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-bottom {
	background: rgba(0,0,0,0.2);
	padding: 2rem 0;
}

.footer-bottom-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}



.app-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}


.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(145deg, #f0f0f0, #dcdcdc);
	box-shadow: 3px 3px 5px #f7f2e7; /* FIXED */
	color: #ef7e00;
	transition: all 0.3s ease;
}

/* inner pressed effect on hover */
.social-links a:hover {
	box-shadow: 
		inset 4px 4px 8px rgba(0,0,0,0.2),
		inset -4px -4px 8px rgba(255,255,255,0.7);
	transform: scale(1.05);
}

/* icon size */
.social-links svg {
	width: 24px;
	height: 24px;
}

.social-links a[aria-label="Facebook"]:hover {
	color: #1877F2;
}

.social-links a[aria-label="Instagram"]:hover {
	color: #E4405F;
}

.social-links a[aria-label="YouTube"]:hover {
	color: #FF0000;
}

.social-links a[aria-label="WhatsApp"]:hover {
	color: #25D366;
}

/* .app-btn {
background: var(--gradient-primary);
color: var(--white);
padding: 8px 20px;
border-radius: 30px;
font-weight: 500;
text-decoration: none;
transition: var(--transition-smooth);
}

.app-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
} */


footer .app-buttons{
	margin-bottom: 0px;
	justify-content: start;
}

.footer-copyright {
	background: rgba(0,0,0,0.3);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
}

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

@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}
	.footer-bottom-container {
		flex-direction: column;
		text-align: center;
	}
	.app-cta {
		justify-content: center;
	}
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
	.slide-title {
		font-size: 3rem;
	}
	.slide-subtitle {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	/* Mobile menu */
	.menu-toggle {
		display: flex;
	}

	.main-navigation .menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white);
		flex-direction: column;
		padding: 1rem 5%;
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
		gap: 0;
	}

	.main-navigation.menu-open .menu {
		display: flex;
	}

	.menu li {
		width: 100%;
	}

	.menu a {
		padding: 1rem 0;
	}

	.menu ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 1rem;
		background: transparent;
	}

	.menu ul.sub-menu a {
		background: transparent;
		border-bottom: none;
	}

	.hero-slider {
		/*         margin-top: 70px; */
/* 		height: 80vh; */
	}

	.slide-content {
		max-width: 100%;
		text-align: center;
	}

	.slide-title {
		font-size: 2.5rem;
	}

	.slide-subtitle {
		font-size: 1rem;
	}

	.slide-button {
		padding: 0.7rem 2rem;
		font-size: 12px;
	}

	.slider-prev,
	.slider-next {
		width: 25px !important;
		height: 25px !important;
		font-size: 1rem !important;
		padding: 0px;
	}
}

@media (max-width: 480px) {
	.slide-title {
		font-size: 2rem;
	}
}




/* home page 2nd section code  */

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--dark-grey);
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-primary);
}

/* Priests Section */
.priests-section {
	padding: 1.5rem 0;
	background: var(--soft-grey);
}

.priests-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 3rem;
}

.priest-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding-bottom: 1.5rem;
}

.priest-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.priest-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.priest-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.priest-card:hover .priest-image img {
	transform: scale(1.05);
}

.priest-name {
	font-size: 1.4rem;
	margin: 1rem 1rem 0.5rem;
	color: var(--primary-saffron);
}

.priest-date {
	font-size: 0.9rem;
	color: var(--primary-gold);
	margin: 0 1rem 0.5rem;
	font-weight: 500;
}

.priest-experience {
	font-size: 0.95rem;
	color: var(--dark-grey);
	margin: 0 1rem 1rem;
	line-height: 1.5;
}

.read-story {
	display: inline-block;
	margin: 0 1rem;
	color: var(--primary-saffron);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.read-story:hover {
	color: var(--primary-gold);
}

.priests-button-wrapper {
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition-smooth);
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

/* Welcome Section */
.welcome-section {
	padding: 5rem 0;
	background: var(--white);
}

.welcome-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.welcome-image {
	position: relative;
	text-align: center;
}

.welcome-image img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease;
}

.welcome-image::before {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	border: 2px dashed var(--primary-gold);
	border-radius: 30px;
	z-index: -1;
	opacity: 0.3;
}

.welcome-content {
	padding: 0 20px;
}

.welcome-title {
	font-size: 3rem;
	color: var(--primary-saffron);
	margin-bottom: 1.5rem;
}

.welcome-text {
	font-size: 1.1rem;
	color: var(--dark-grey);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.welcome-btn {
	margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
	.priests-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.welcome-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.welcome-image {
		order: 1;
	}
	.welcome-content {
		order: 2;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.8rem !important;
	}
	.priests-grid {
		grid-template-columns: 1fr;
	}
	.welcome-title {
		font-size: 2.2rem;
	}
}


/* ===== Floating Sidebar Buttons ===== */
/* ===== Floating Sidebar Buttons (Icon Only) ===== */
.floating-buttons {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

.floating-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* simple hover effect (optional, no width change) */
.floating-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* label completely hide */
.btn-label {
	display: none;
}

/* icon proper center */
.btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-icon svg {
	width: 23px;
	height: 23px;
	display: block;
}

.get-app:hover {
	color: #3DDC84; /* Android Green */
}

.whatsapp:hover {
	color: #25D366; /* WhatsApp Green */
}

.call:hover {
	color: #007bff; /* Blue */
}

.scroll-top:hover {
	color: #ff9800; /* Orange */
}

/* mobile app section home  */


/* ===== App Download Section ===== */
.app-download-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--soft-grey) 0%, var(--white) 100%);
	position: relative;
	overflow: hidden;
}

/* Decorative background elements */
.app-download-section::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(230,126,34,0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.app-download-section::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.app-download-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* Left content */
.app-content {
	padding-right: 20px;
}

.app-heading {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--dark-grey);
	margin-bottom: 1.5rem;
	line-height: 1.2;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-heading.visible {
	opacity: 1;
	transform: translateY(0);
}

.app-description {
	font-size: 1.2rem;
	color: var(--dark-grey);
	margin-bottom: 2.5rem;
	line-height: 1.8;
	opacity: 0.9;
}

.app-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.app-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 30px;
	background: var(--white);
	border: 2px solid transparent;
	border-radius: 50px;
	font-weight: 600;
	color: var(--dark-grey);
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-subtle);
	position: relative;
	overflow: hidden;
}

.app-btn .btn-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.app-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
	border-color: var(--primary-saffron);
}

.app-btn:hover .btn-icon {
	transform: scale(1.1);
}

.android-btn {
	background: linear-gradient(145deg, var(--white), #f5f5f5);
}

.ios-btn {
	background: linear-gradient(145deg, var(--white), #f5f5f5);
}

.app-trust {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 1rem;
	color: var(--dark-grey);
	opacity: 0.8;
}

.rating {
	display: flex;
	gap: 4px;
}

.star {
	color: #FFD700;
	font-size: 1.2rem;
}

.star.half {
	position: relative;
	display: inline-block;
	color: #ddd; /* fallback */
}

.star.half::before {
	content: '★';
	position: absolute;
	left: 0;
	width: 50%;
	overflow: hidden;
	color: #FFD700;
}

/* Right side - phone mockup */
.app-mockup {
	text-align: center;
	position: relative;
}

.phone-image {
	max-width: 100%;
	height: auto;
	animation: float 3s ease-in-out infinite;
	filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
	border-radius: 10px;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {
	.app-heading {
		font-size: 2.2rem;
	}
	.app-download-container {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.app-download-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.app-content {
		padding-right: 0;
		text-align: center;
	}
	.app-buttons {
		justify-content: center;
	}
	.app-trust {
		justify-content: center;
	}
	.app-heading {
		font-size: 2rem;
	}
	.app-description {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.app-heading {
		font-size: 1.8rem;
	}
	.app-btn {
		width: 100%;
		justify-content: center;
	}
}

/* download poup section  */

.app-popup{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.6);
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	visibility:hidden;
	transition:0.3s;
	z-index:9999;
}

.app-popup.active{
	opacity:1;
	visibility:visible;
}

.app-popup-box{
	background:#fff;
	padding:35px;
	border-radius:12px;
	text-align:center;
	max-width:400px;
	width:90%;
	position:relative;
	box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.popup-close{
	position:absolute;
	top:10px;
	right:15px;
	font-size:22px;
	cursor:pointer;
}

.popup-buttons{
	display:flex;
	gap:10px;
	justify-content:center;
	margin-top:20px;
}

.popup-btn{
	padding:10px 18px;
	border-radius:6px;
	text-decoration:none;
	color:#fff;
	font-size:14px;
}

.popup-btn.android{
	background: var(--primary-saffron);
}

.popup-btn.ios{
	background:#000;
}



/* home page  */
.as-services-section {
    padding: 60px 0;
    text-align: center;
}

.as-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.as-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.as-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.as-service-card {
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s ease;
	box-shadow: var(--shadow-subtle);
}

.as-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.as-service-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.as-service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.as-service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.as-service-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Button */
.as-btn-wrapper {
    margin-top: 30px;
}

.as-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.as-btn:hover {
    opacity: 0.9;
}

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

    .as-section-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .as-services-section {
        padding: 40px 0;
    }

    .as-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .as-service-card {
        padding: 15px;
    }

    .as-service-img {
        width: 80px;
        height: 80px;
    }

    .as-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .as-service-title {
        font-size: 16px;
    }

    .as-service-desc {
        font-size: 13px;
    }

    .as-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}


/* services section code  */
/* ===== Popular Services Section ===== */
.services-section {
	padding: 5rem 0;
	background: var(--white);
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 3rem 0;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-grid.services-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger effect (optional) */
.services-grid.services-visible .service-card {
	animation: fadeUp 0.5s ease forwards;
	opacity: 0; /* start hidden, then animate */
}

@keyframes fadeUp {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* We'll control via JS: add class to grid, then use animation on children with delay? 
Simpler: JS adds class, and we define each card's transition.
But we'll keep it simple: grid becomes visible, and cards have a transition property.
*/

.service-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-subtle);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	background: var(--soft-grey);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
}

.services-section .service-title {
	font-size: 1.4rem;
	color: var(--primary-saffron);
	margin-bottom: 0.75rem;
}

.service-description {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
	opacity: 0.9;
}

.services-button-wrapper {
	text-align: center;
	margin-top: 2rem;
}

.view-all-services {
	display: inline-block;
	padding: 14px 40px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: var(--transition-smooth);
	border: none;
	cursor: pointer;
}

.view-all-services:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

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

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	.service-card {
		padding: 1.5rem;
	}
}



/* ===== Testimonials Section ===== */
.testimonials-section {
	padding: 5rem 0;
	background: var(--white);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--dark-grey);
	margin-bottom: 0.5rem;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: var(--primary-saffron);
	margin-bottom: 3rem;
	font-weight: 300;
}

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

.testimonial-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	border: 1px solid var(--soft-grey);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.user-photo {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--primary-gold);
}

.user-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-name {
	font-size: 1.4rem;
	color: var(--primary-saffron);
	margin-bottom: 0.25rem;
}

.user-city {
	font-size: 0.9rem;
	color: var(--dark-grey);
	opacity: 0.7;
	margin-bottom: 0.75rem;
}

.rating {
	font-size: 1.2rem;
	color: #FFD700; /* gold color for stars */
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.testimonial-text {
	font-size: 1rem;
	color: var(--dark-grey);
	line-height: 1.6;
	font-style: italic;
}

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

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.section-title {
		font-size: 2rem;
	}
	.section-subtitle {
		font-size: 1rem;
	}
}


/* ===== About Page ===== */

/* Section padding consistency */
.about-hero,
.about-platform,
.how-we-work,
.why-choose,
.mission-vision,
.app-cta {
	padding: 5rem 0;
}

/* Section titles */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--dark-grey);
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-primary);
}

.section-title.left-aligned {
	text-align: left;
}

.section-title.left-aligned::after {
	left: 0;
	transform: none;
}

/* About Hero */
.about-hero {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('http://localhost/achman/wp-content/uploads/2026/03/4-Hindu-puja-hindu-priest-1-1.jpg') center/cover no-repeat;
	color: var(--white);
	text-align: center;
	padding: 8rem 0;
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-intro {
	font-size: 1.3rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* About Platform (Two Column) */
.platform-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.platform-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease;
}

.platform-image img:hover {
	transform: scale(1.02);
}

.platform-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark-grey);
	margin-bottom: 1.5rem;
}

/* How We Work Steps */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.step-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--soft-grey);
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	color: var(--white);
	font-size: 2rem;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.step-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.75rem;
}

.step-card p {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
}

/* Why Choose Achman (Features) */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	background: var(--soft-grey);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: transform 0.3s ease, background 0.3s ease;
	border: 1px solid transparent;
}

.feature-card:hover {
	background: var(--white);
	transform: translateY(-5px);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-subtle);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.75rem;
}

.feature-card p {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
}

/* Mission & Vision */
.mission-vision-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.mv-card {
	background: var(--white);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: var(--shadow-subtle);
	border: 1px solid var(--soft-grey);
	transition: transform 0.3s ease;
}

.mv-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-saffron);
}

.mv-card h3 {
	font-size: 2rem;
	color: var(--primary-saffron);
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.mv-card h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
}

.mv-card p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark-grey);
}


.app-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* .app-btn {
display: inline-block;
padding: 14px 35px;
background: var(--white);
color: var(--primary-saffron);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
} */

/* Responsive */
@media (max-width: 992px) {
	.hero-title {
		font-size: 3rem;
	}
	.platform-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-intro {
		font-size: 1.1rem;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.mission-vision-container {
		grid-template-columns: 1fr;
	}
	.app-cta h2 {
		font-size: 2rem;
	}
	.app-btn {
		width: 100%;
		text-align: center;
	}
}


/* ===== Contact Page ===== */

/* Section padding */
.contact-hero,
.contact-form-section,
.quick-help,
.map-section,
.contact-app-cta {
	padding: 5rem 0;
}

/* Hero */
.contact-hero {
	background: linear-gradient(135deg, rgba(243,156,18,0.30), rgba(241,196,15,0.30)), url('http://localhost/achman/wp-content/uploads/2026/03/slide018.jpg') center/cover no-repeat;
	color: var(--white);
	text-align: center;
	padding: 8rem 0;
}

.contact-hero .hero-title {
	font-size: 4rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero .hero-subtitle {
	font-size: 1.3rem;
	max-width: 700px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Info Cards */
.info-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.info-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--soft-grey);
	margin-top: 20px;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	border-color: var(--primary-saffron);
}

.info-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.info-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.5rem;
}

.info-card p,
.info-card a {
	font-size: 1rem;
	color: var(--dark-grey);
	text-decoration: none;
	transition: color 0.3s;
}

.info-card a:hover {
	color: var(--primary-saffron);
}

/* Contact Form Section */
.form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.form-column {
	background: var(--white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: var(--shadow-subtle);
}

.section-title.left-aligned {
	text-align: left;
	margin-bottom: 2rem;
}

.section-title.left-aligned::after {
	left: 0;
	transform: none;
}

.contact-form .form-group {
	margin-bottom: 1.5rem;
}

.contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--dark-grey);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--soft-grey);
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-saffron);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 1.1rem;
	background: var(--gradient-primary);
	color: var(--white);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(230,126,34,0.3);
}

.form-status {
	margin-top: 1rem;
	text-align: center;
	font-weight: 500;
}

.image-column img {
	width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s;
}

.image-column img:hover {
	transform: scale(1.02);
}

/* Quick Help Cards */
.help-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.help-card {
	background: var(--soft-grey);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.help-card:hover {
	background: var(--white);
	transform: translateY(-5px);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-subtle);
}

.help-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.help-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.75rem;
}

.help-card p {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
}

/* Map Section */
.map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
}


.app-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* .app-btn {
display: inline-block;
padding: 14px 35px;
background: var(--white);
color: var(--primary-saffron);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
} */

/* Responsive */
@media (max-width: 992px) {
	.info-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.form-container {
		grid-template-columns: 1fr;
	}
	.help-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.contact-hero .hero-title {
		font-size: 3rem;
	}
	.contact-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	.info-cards {
		grid-template-columns: 1fr;
	}
	.help-cards {
		grid-template-columns: 1fr;
	}
	.contact-app-cta h2 {
		font-size: 2rem;
	}
}




/* ===== Services Page ===== */

/* Section spacing */
.services-hero,
.services-nav,
.service-detail,
.why-perform,
.booking-steps,
.services-app-cta {
	padding: 5rem 0;
}

/* Hero */
.services-hero {
	background: linear-gradient(135deg, rgba(230,126,34,0.7), rgba(212,175,55,0.7)), url('http://localhost/achman/wp-content/uploads/2026/03/hero-2.jpg') center/cover no-repeat;
	color: var(--white);
	text-align: center;
	padding: 8rem 0;
}

.services-hero .hero-title {
	font-size: 4rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.services-hero .hero-subtitle {
	font-size: 1.3rem;
	max-width: 700px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Services Navigation */
.services-nav {
	background: var(--white);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 1rem 0;
}

.services-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.services-menu a {
	color: var(--dark-grey);
	font-weight: 500;
	text-decoration: none;
	padding: 5px 10px;
	transition: color 0.3s;
	white-space: nowrap;
}

.services-menu a:hover {
	color: var(--primary-saffron);
}

/* Service Detail Sections */
.service-detail {
	background: var(--white);
}

.service-detail.alt {
	background: var(--soft-grey);
}

.service-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.service-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease;
}

.service-image img:hover {
	transform: scale(1.02);
}

.service-content {
	padding: 0 20px;
}

.service-title {
	font-size: 2.5rem;
	color: var(--primary-saffron);
	margin-bottom: 1.5rem;
}

.service-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark-grey);
	margin-bottom: 1.5rem;
}

.service-benefits,
.service-best-time {
	margin-bottom: 1.5rem;
}

.service-benefits h3,
.service-best-time h3 {
	font-size: 1.2rem;
	color: var(--primary-gold);
	margin-bottom: 0.5rem;
}

.service-benefits p,
.service-best-time p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--dark-grey);
}

.book-btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.book-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(230,126,34,0.3);
}

/* Why Perform Section */
.why-perform {
	background: var(--white);
}

.reasons-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.reason-card {
	background: var(--soft-grey);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.reason-card:hover {
	background: var(--white);
	transform: translateY(-5px);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-subtle);
}

.reason-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.reason-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.75rem;
}

.reason-card p {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
}

/* Booking Steps (reuse steps-grid from previous) */
.booking-steps {
	background: var(--soft-grey);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.step-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s;
}

.step-card:hover {
	transform: translateY(-5px);
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	color: var(--white);
	font-size: 2rem;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.step-card h3 {
	font-size: 1.3rem;
	color: var(--primary-saffron);
	margin-bottom: 0.5rem;
}

.step-card p {
	font-size: 0.95rem;
	color: var(--dark-grey);
}



.app-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* .app-btn {
display: inline-block;
padding: 14px 35px;
background: var(--white);
color: var(--primary-saffron);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
} */

/* Responsive */
@media (max-width: 992px) {
	.service-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.service-detail.alt .service-container {
		direction: ltr; /* keep image order natural */
	}
	.service-content {
		text-align: center;
	}
	.service-benefits,
	.service-best-time {
		text-align: left;
	}
	.reasons-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.services-hero .hero-title {
		font-size: 3rem;
	}
	.services-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	.services-menu {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
	}
	.services-menu a {
		white-space: nowrap;
	}
	.service-title {
		font-size: 2rem;
	}
	.reasons-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.services-app-cta h2 {
		font-size: 2rem;
	}
}



/* ===== Blog Pages ===== */

/* Blog Hero */
.blog-hero {
	background: linear-gradient(135deg, rgba(230,126,34,0.9), rgba(212,175,55,0.9)), url('http://localhost/achman/wp-content/uploads/2026/03/pooja-hindu.jpg') center/cover no-repeat;
	color: var(--white);
	text-align: center;
	padding: 6rem 0;
}

.blog-hero .hero-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.blog-hero .hero-subtitle {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Blog Archive Grid */
.blog-archive {
	padding: 4rem 0;
}

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

/* Blog Card */
.blog-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--soft-grey);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

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

.card-content {
	padding: 1.5rem;
}

.card-category {
	display: inline-block;
	background: var(--soft-grey);
	color: var(--primary-saffron);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 10px;
	border-radius: 30px;
	margin-bottom: 1rem;
}

.card-title {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.card-title a {
	color: var(--dark-grey);
	text-decoration: none;
	transition: color 0.3s;
}

.card-title a:hover {
	color: var(--primary-saffron);
}

.card-excerpt {
	font-size: 0.95rem;
	color: var(--dark-grey);
	line-height: 1.6;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.read-more {
	display: inline-block;
	color: var(--primary-saffron);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s;
}

.read-more:hover {
	color: var(--primary-gold);
}

/* Pagination */
.pagination {
	text-align: center;
	margin-top: 3rem;
}

.pagination .nav-links {
	display: inline-flex;
	gap: 10px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 8px 16px;
	background: var(--white);
	border: 1px solid var(--soft-grey);
	border-radius: 4px;
	color: var(--dark-grey);
	text-decoration: none;
	transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--primary-saffron);
	color: var(--white);
	border-color: var(--primary-saffron);
}

/* Single Post Hero */
.post-hero {
	padding: 4rem 0 2rem;
	text-align: center;
}

.post-featured-image {
	max-width: 900px;
	margin: 0 auto 2rem;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
}

.post-featured-image img {
	width: 100%;
	height: auto;
}

.post-title {
	font-size: 3rem;
	color: var(--dark-grey);
	margin-bottom: 1rem;
}

.post-meta {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	color: var(--primary-saffron);
	font-size: 1rem;
}

.post-meta span {
	position: relative;
}

.post-meta span:not(:last-child)::after {
	content: '•';
	margin-left: 20px;
	color: var(--primary-gold);
}

/* Content Area with Table of Contents */
.post-content-area {
	padding: 2rem 0 4rem;
	background: var(--white);
}

.content-container {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 40px;
}

.toc-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}

.toc {
	background: var(--soft-grey);
	border-radius: 12px;
	padding: 1.5rem;
	border-left: 4px solid var(--primary-saffron);
}

.toc h3 {
	font-size: 1.2rem;
	color: var(--primary-saffron);
	margin-bottom: 1rem;
}

.toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc li {
	margin-bottom: 0.5rem;
}

.toc a {
	color: var(--dark-grey);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s;
	display: block;
	padding: 4px 0;
	border-bottom: 1px dotted rgba(0,0,0,0.05);
}

.toc a:hover {
	color: var(--primary-saffron);
}

.post-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark-grey);
}

.post-content h2 {
	font-size: 2rem;
	color: var(--primary-saffron);
	margin: 2rem 0 1rem;
}

.post-content h3 {
	font-size: 1.5rem;
	color: var(--primary-gold);
	margin: 1.5rem 0 1rem;
}

.post-content p {
	margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.post-content blockquote {
	background: var(--soft-grey);
	border-left: 4px solid var(--primary-saffron);
	padding: 1.5rem;
	font-style: italic;
	margin: 2rem 0;
	border-radius: 0 12px 12px 0;
}

/* Related Posts */
.related-posts {
	padding: 4rem 0;
	background: var(--soft-grey);
}

.related-posts .section-title {
	margin-bottom: 2rem;
}

.related-card .card-image {
	height: 150px;
}

.related-card .card-title {
	font-size: 1.2rem;
}


.app-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* .app-btn {
display: inline-block;
padding: 14px 35px;
background: var(--white);
color: var(--primary-saffron);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.app-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
} */

/* Responsive */
@media (max-width: 992px) {
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.content-container {
		grid-template-columns: 1fr;
	}
	.toc-sidebar {
		position: static;
		margin-bottom: 2rem;
	}
	.post-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.blog-hero .hero-title {
		font-size: 2.5rem;
	}
	.posts-grid {
		grid-template-columns: 1fr;
	}
	.post-meta {
		flex-direction: column;
		gap: 10px;
	}
	.post-meta span:not(:last-child)::after {
		display: none;
	}
	.post-title {
		font-size: 2rem;
	}
	.post-app-cta h2 {
		font-size: 2rem;
	}
	
	.top-bar-left{
		display: none;
	}
}






