:root {
	--primary-color: #0f5f3c; /* Saudi Green */
	--accent-color: #c5a059; /* Gold */
	--text-color: #333;
	--light-bg: #f9f9f9;
	--white: #ffffff;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

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

/* Header */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 15px 0;
}

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

.site-title a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.main-navigation li {
	margin-left: 20px;
}

.main-navigation a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
}

.main-navigation a:hover {
	color: var(--accent-color);
}

/* Hero */
.hero-section {
	background: linear-gradient(rgba(15, 95, 60, 0.8), rgba(15, 95, 60, 0.9)), url('https://source.unsplash.com/1600x900/?mecca,mosque') center/cover;
	color: var(--white);
	text-align: center;
	padding: 100px 20px;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	margin: 10px;
	font-weight: bold;
}

.btn-primary {
	background: var(--accent-color);
	color: var(--white);
}

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

/* Sections */
.section-padding {
	padding: 60px 0;
}

.bg-light {
	background: var(--light-bg);
}

.section-title {
	font-size: 2rem;
	margin-bottom: 40px;
	color: var(--primary-color);
	text-align: center;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.card {
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	padding: 20px;
	border-top: 4px solid var(--accent-color);
	transition: transform 0.3s;
}

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

.cta-section {
	background: var(--primary-color);
	color: var(--white);
	padding: 60px 0;
}

.btn-gold {
	background: var(--accent-color);
	color: var(--white);
}

/* Testimonials */
.testimonial-card {
	background: #fff;
	padding: 30px;
	border-left: 5px solid var(--primary-color);
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.testimonial-card .quote-content {
	font-size: 1.1rem;
	margin-bottom: 15px;
	color: #555;
}
.testimonial-card .author {
	margin: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* Feature Box */
.feature-box {
	text-align: center;
	padding: 20px;
}
.feature-box .dashicons {
	font-size: 40px;
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	margin-bottom: 15px;
}

/* Footer */
.site-footer {
	background: #222;
	color: #ccc;
	padding: 40px 0;
	text-align: center;
}

/* Floating WhatsApp */
.floating-whatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
}

.floating-whatsapp img {
	width: 60px;
	height: 60px;
	filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
	transition: transform 0.3s;
}

.floating-whatsapp:hover img {
	transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2rem;
	}
	.site-header .container {
		flex-direction: column;
	}
	.main-navigation ul {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 15px;
	}
}