/* =====================================================
   Marasi Theme — Black & Gold Luxury
   Bilingual RTL/LTR via CSS logical properties
   ===================================================== */

:root {
	--black: #0c0c0c;
	--black-2: #141414;
	--black-3: #1e1e1e;
	--gold: #c9a24b;
	--gold-2: #e8c96a;
	--gold-dark: #b8860b;
	--white: #ffffff;
	--grey: #f6f5f2;
	--text: #2b2b2b;
	--text-light: #666;
	--wa: #25d366;
	--radius: 14px;
	--shadow: 0 10px 40px rgba(0, 0, 0, .08);
	--font: "Tajawal", "Poppins", system-ui, sans-serif;
	--transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html[dir="ltr"] body { --font: "Poppins", "Tajawal", system-ui, sans-serif; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--white);
	line-height: 1.8;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container-narrow { width: min(860px, 92%); }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px); overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: .55rem;
	padding: .85rem 1.9rem;
	border-radius: 50px;
	font-weight: 700; font-size: 1rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}
.btn-gold {
	background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
	color: var(--black);
	box-shadow: 0 6px 20px rgba(201, 162, 75, .35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201, 162, 75, .5); color: var(--black); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 6px 20px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { transform: translateY(-3px); color: #fff; }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-light { border-color: rgba(255, 255, 255, .7); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--black); }
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 1.5px solid var(--gold); color: var(--gold);
	transition: var(--transition);
}
.icon-btn:hover { background: var(--gold); color: var(--black); }

/* ---------- Top bar ---------- */
.top-bar { background: var(--black); color: #ddd; font-size: .85rem; border-bottom: 1px solid rgba(201, 162, 75, .25); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding-block: .45rem; }
.top-bar-phone, .lang-switch { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold); font-weight: 700; transition: var(--transition); }
.top-bar-phone:hover, .lang-switch:hover { color: var(--gold-2); }
.lang-switch { border: 1px solid rgba(201, 162, 75, .4); border-radius: 50px; padding: .15rem .9rem; }
.lang-switch:hover { border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(12, 12, 12, .97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0, 0, 0, .35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .8rem; }

.site-logo { display: inline-flex; align-items: center; gap: .7rem; }
.logo-mark { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 1px 4px rgba(201, 162, 75, .25)); }
@media (max-width: 940px) { .logo-img { height: 42px; } }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { color: var(--gold); font-size: 1.5rem; font-weight: 900; letter-spacing: .5px; }
.logo-text small { color: #bbb; font-size: .72rem; font-weight: 500; }

.primary-nav .menu { display: flex; align-items: center; gap: 1.15rem; flex-wrap: nowrap; }
.primary-nav .menu a { color: #eee; font-weight: 500; font-size: .9rem; padding-block: .4rem; position: relative; transition: color .25s; white-space: nowrap; }
.primary-nav .menu a::after {
	content: ""; position: absolute; bottom: 0; inset-inline-start: 0;
	width: 0; height: 2px; background: linear-gradient(90deg, var(--gold-2), var(--gold-dark));
	transition: width .3s;
}
.primary-nav .menu a:hover { color: var(--gold); }
.primary-nav .menu a:hover::after, .primary-nav .current-menu-item a::after { width: 100%; }
.primary-nav .current-menu-item a { color: var(--gold); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; z-index: 1002; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--gold); margin-block: 5px; border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; }
html[dir="rtl"] .hero-overlay { background: linear-gradient(to left, rgba(12, 12, 12, .8) 15%, rgba(12, 12, 12, .45) 55%, rgba(12, 12, 12, .12)); }
html[dir="ltr"] .hero-overlay { background: linear-gradient(to right, rgba(12, 12, 12, .8) 15%, rgba(12, 12, 12, .45) 55%, rgba(12, 12, 12, .12)); }

.hero-content { position: relative; z-index: 2; color: #fff; padding-block: 5rem; max-width: 1200px; }
.hero-badge {
	display: inline-block; padding: .35rem 1.1rem; border-radius: 50px;
	border: 1px solid rgba(201, 162, 75, .5); color: var(--gold-2);
	font-size: .85rem; font-weight: 700; margin-bottom: 1.4rem;
	background: rgba(201, 162, 75, .08);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.35; max-width: 700px; color: #fff; }
.hero h1::after { content: ""; display: block; width: 90px; height: 4px; border-radius: 4px; margin-top: 1.1rem; background: linear-gradient(90deg, var(--gold-2), var(--gold-dark)); }
.hero-desc { margin-top: 1.3rem; font-size: 1.2rem; color: #e8e8e8; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 7rem 0 4.5rem; overflow: hidden; color: #fff; }
.page-hero .hero-bg, .page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { background: linear-gradient(rgba(12, 12, 12, .88), rgba(12, 12, 12, .78)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; color: #fff; }
.page-hero p { color: #ddd; max-width: 640px; margin-top: .8rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; margin-bottom: 1.2rem; }
.breadcrumbs li { display: flex; align-items: center; gap: .4rem; color: #bbb; }
.breadcrumbs li:not(:last-child)::after { content: "›"; color: var(--gold); }
.breadcrumbs a { color: var(--gold-2); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-light { background: var(--grey); }
.section-dark { background: var(--black-2); color: #eee; }
.section-dark .section-head p { color: #aaa; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 900; color: inherit; }
.section-dark .section-head h2 { color: #fff; }
.section-head h2::after { content: ""; display: block; width: 70px; height: 3.5px; border-radius: 4px; margin: .9rem auto 0; background: linear-gradient(90deg, var(--gold-2), var(--gold-dark)); }
.section-head p { color: var(--text-light); margin-top: .8rem; }
.section-title { font-size: 1.5rem; font-weight: 800; margin: 2.8rem 0 1.4rem; color: inherit; }
.section-title::before { content: ""; display: inline-block; width: 8px; height: 26px; background: linear-gradient(var(--gold-2), var(--gold-dark)); border-radius: 4px; margin-inline-end: .7rem; vertical-align: middle; }
.section-more { text-align: center; margin-top: 2.6rem; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.service-card {
	background: #fff; border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); border: 1px solid #eee;
	transition: var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0, 0, 0, .14); border-color: rgba(201, 162, 75, .5); }
.service-card-img { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-card-title { font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; }
.service-card-title a:hover { color: var(--gold-dark); }
.service-card-body p { color: var(--text-light); font-size: .95rem; flex: 1; }
.service-card-actions { display: flex; align-items: center; gap: .6rem; margin-top: 1.1rem; flex-wrap: wrap; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.6rem; }
.why-item {
	background: rgba(255, 255, 255, .04); border: 1px solid rgba(201, 162, 75, .2);
	border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center;
	transition: var(--transition);
}
.section:not(.section-dark) .why-item { background: #fff; box-shadow: var(--shadow); border-color: #eee; }
.why-item:hover { border-color: var(--gold); transform: translateY(-6px); }
.why-item h3 { color: var(--gold-2); font-size: 1.08rem; margin: 1rem 0 .5rem; font-weight: 800; }
.section:not(.section-dark) .why-item h3 { color: var(--black); }
.why-item p { font-size: .92rem; color: #aaa; }
.section:not(.section-dark) .why-item p { color: var(--text-light); }
.why-icon {
	display: inline-flex; width: 62px; height: 62px; border-radius: 50%;
	align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
	-webkit-mask: none;
	position: relative;
}
.why-icon::before {
	content: ""; width: 28px; height: 28px;
	background: var(--black);
	-webkit-mask-size: contain; mask-size: contain;
	-webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
	-webkit-mask-position: center; mask-position: center;
}
.why-icon-shield::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.4 8 11 4.6-1.6 8-6 8-11V5l-8-3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.4 8 11 4.6-1.6 8-6 8-11V5l-8-3z'/%3E%3C/svg%3E"); }
.why-icon-box::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 8.5 12 3 3 8.5v7L12 21l9-5.5v-7zM12 5.3l6.5 4L12 13.2 5.5 9.3 12 5.3zM5 11l6 3.6v4.7l-6-3.7V11zm8 8.3v-4.7l6-3.6v4.6l-6 3.7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 8.5 12 3 3 8.5v7L12 21l9-5.5v-7zM12 5.3l6.5 4L12 13.2 5.5 9.3 12 5.3zM5 11l6 3.6v4.7l-6-3.7V11zm8 8.3v-4.7l6-3.6v4.6l-6 3.7z'/%3E%3C/svg%3E"); }
.why-icon-list::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h2v2H4V6zm4 0h12v2H8V6zm-4 5h2v2H4v-2zm4 0h12v2H8v-2zm-4 5h2v2H4v-2zm4 0h12v2H8v-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h2v2H4V6zm4 0h12v2H8V6zm-4 5h2v2H4v-2zm4 0h12v2H8v-2zm-4 5h2v2H4v-2zm4 0h12v2H8v-2z'/%3E%3C/svg%3E"); }
.why-icon-warehouse::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 2 9v12h20V9L12 3zm-8 8.2 8-4.5 8 4.5V20h-4v-6H8v6H4v-8.8zm6 8.8v-4h4v4h-4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 2 9v12h20V9L12 3zm-8 8.2 8-4.5 8 4.5V20h-4v-6H8v6H4v-8.8zm6 8.8v-4h4v4h-4z'/%3E%3C/svg%3E"); }
.why-icon-tools::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 18.3 13.4 10c.7-2.4-.1-5-2.2-6.6A6 6 0 0 0 4.6 4.6 6 6 0 0 0 10 13.4l8.3 8.3c.8.8 2 .8 2.8 0l.6-.6c.8-.8.8-2 0-2.8zM6.5 8A1.5 1.5 0 1 1 8 6.5 1.5 1.5 0 0 1 6.5 8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.7 18.3 13.4 10c.7-2.4-.1-5-2.2-6.6A6 6 0 0 0 4.6 4.6 6 6 0 0 0 10 13.4l8.3 8.3c.8.8 2 .8 2.8 0l.6-.6c.8-.8.8-2 0-2.8zM6.5 8A1.5 1.5 0 1 1 8 6.5 1.5 1.5 0 0 1 6.5 8z'/%3E%3C/svg%3E"); }
.why-icon-truck::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3a1 1 0 0 0-1 1v11h2a3 3 0 0 0 6 0h4a3 3 0 0 0 6 0h2v-5l-2-3zM7 18.5A1.5 1.5 0 1 1 8.5 17 1.5 1.5 0 0 1 7 18.5zm10 0A1.5 1.5 0 1 1 18.5 17 1.5 1.5 0 0 1 17 18.5zM19 10l1.5 2.2V14h-1.5V10H19z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3a1 1 0 0 0-1 1v11h2a3 3 0 0 0 6 0h4a3 3 0 0 0 6 0h2v-5l-2-3zM7 18.5A1.5 1.5 0 1 1 8.5 17 1.5 1.5 0 0 1 7 18.5zm10 0A1.5 1.5 0 1 1 18.5 17 1.5 1.5 0 0 1 17 18.5zM19 10l1.5 2.2V14h-1.5V10H19z'/%3E%3C/svg%3E"); }
.why-icon-chat::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4a2 2 0 0 0-2 2v18l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z'/%3E%3C/svg%3E"); }
.why-icon-pin::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/%3E%3C/svg%3E"); }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; counter-reset: steps; }
.step-item {
	position: relative; background: #fff; border-radius: var(--radius);
	padding: 2.4rem 1.5rem 1.6rem; box-shadow: var(--shadow);
	border-top: 3px solid var(--gold); transition: var(--transition);
}
.step-item:hover { transform: translateY(-6px); }
.step-num {
	position: absolute; top: -22px; inset-inline-start: 1.4rem;
	width: 44px; height: 44px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
	color: var(--black); font-weight: 900; font-size: 1.15rem;
	box-shadow: 0 4px 14px rgba(201, 162, 75, .45);
}
.step-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.step-item p { color: var(--text-light); font-size: .93rem; }
.steps-inline { margin-top: 1rem; }
.steps-inline .step-item { padding-top: 2.6rem; }

/* ---------- CTA band ---------- */
.cta-band {
	background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
	color: #fff; text-align: center; padding: 4.5rem 0;
	border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.cta-band h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 900; color: #fff; }
.cta-band p { color: #ccc; max-width: 560px; margin: .9rem auto 0; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
	position: absolute; inset-inline: 0; bottom: 0;
	background: linear-gradient(transparent, rgba(12, 12, 12, .9));
	color: #fff; padding: 2rem 1.2rem .9rem; font-weight: 700; font-size: .95rem;
}

/* ---------- Blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.post-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid #eee; transition: var(--transition); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, .13); }
.post-card-img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--black-3); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: .8rem; font-size: .8rem; color: var(--text-light); margin-bottom: .6rem; }
.post-cat { background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); color: var(--black); padding: .12rem .8rem; border-radius: 50px; font-weight: 700; }
.post-card-body h3 { font-size: 1.08rem; font-weight: 800; line-height: 1.5; }
.post-card-body h3 a:hover { color: var(--gold-dark); }
.post-card-body p { color: var(--text-light); font-size: .92rem; margin-top: .5rem; flex: 1; }
.read-more { color: var(--gold-dark); font-weight: 700; margin-top: .9rem; font-size: .92rem; }
.read-more:hover { color: var(--black); }

.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding-inline: .8rem; margin-inline: .2rem;
	border-radius: 8px; border: 1px solid #ddd; color: var(--text); font-weight: 700;
	transition: var(--transition);
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--black); color: var(--gold); border-color: var(--black); }

/* ---------- Content body (pages/posts) ---------- */
.content-body h2 { font-size: 1.5rem; font-weight: 800; margin: 2.2rem 0 .9rem; }
.content-body h3 { font-size: 1.2rem; font-weight: 800; margin: 1.7rem 0 .6rem; color: var(--black); }
.content-body p { margin-bottom: 1.1rem; color: #3d3d3d; }
.content-body a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }
.content-body ul, .content-body ol { margin: 0 0 1.2rem; padding-inline-start: 1.4rem; }
.content-body li { margin-bottom: .4rem; }
.content-body ul { list-style: disc; }
.img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.6rem 0; }
.img-row.single { grid-template-columns: 1fr; }
.img-row img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.single-post .post-meta { margin-bottom: 1.6rem; font-size: .9rem; }
.post-cta {
	margin-top: 2.6rem; padding: 2rem; border-radius: var(--radius);
	background: var(--black-2); color: #fff; text-align: center;
	border: 1px solid rgba(201, 162, 75, .35);
}
.post-cta h3 { color: var(--gold-2); font-size: 1.3rem; }
.related-posts { margin-top: 3.5rem; }

/* ---------- Feature list ---------- */
.feature-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .9rem; margin-bottom: 1rem; }
.feature-list li {
	background: #fff; border: 1px solid #eee; border-inline-start: 3px solid var(--gold);
	border-radius: 10px; padding: .9rem 1.2rem; font-weight: 600; font-size: .96rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}
.feature-list li::before { content: "✓"; color: var(--gold-dark); font-weight: 900; margin-inline-end: .5rem; }

.service-book { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .9rem; }
.faq-item { background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 8px 24px rgba(201, 162, 75, .15); }
.faq-q {
	width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	background: none; border: 0; padding: 1.1rem 1.4rem; cursor: pointer;
	font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--black); text-align: start;
}
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
	content: ""; position: absolute; background: var(--gold-dark); border-radius: 2px;
	transition: var(--transition);
}
.faq-icon::before { width: 14px; height: 2.5px; top: 10px; inset-inline-start: 4px; }
.faq-icon::after { width: 2.5px; height: 14px; top: 4px; inset-inline-start: 10px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 1.4rem 1.2rem; color: var(--text-light); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.4rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; flex-direction: column; background: var(--grey); border-radius: 12px; padding: 1rem 1.3rem; }
.contact-label { font-size: .82rem; color: var(--text-light); font-weight: 700; }
.contact-value { font-size: 1.15rem; font-weight: 800; color: var(--black); }
a.contact-value:hover { color: var(--gold-dark); }
.contact-actions { display: flex; flex-direction: column; gap: .8rem; align-items: stretch; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-weight: 700; font-size: .92rem; }
.form-field input, .form-field select, .form-field textarea {
	font-family: var(--font); font-size: 1rem;
	border: 1.5px solid #ddd; border-radius: 10px; padding: .8rem 1rem;
	background: #fff; transition: var(--transition); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
	outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
}
.hp-field { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: 1rem 1.3rem; border-radius: 10px; font-weight: 700; }
.form-success { background: #e8f9ee; color: #1a7a3c; border: 1px solid #b9e8c8; }
.form-error { background: #fdeaea; color: #b3261e; border: 1px solid #f3c1be; }

/* ---------- Comments ---------- */
.comments-area { margin-top: 3.5rem; }
.comment-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.comment-list .comment-body { background: var(--grey); border-radius: 12px; padding: 1.2rem 1.4rem; }
.comment-list .comment-author { font-weight: 800; }
.comment-list .comment-metadata { font-size: .8rem; color: var(--text-light); }
.comment-form { display: flex; flex-direction: column; gap: 1rem; }
.comment-form input:not([type="submit"]), .comment-form textarea {
	font-family: var(--font); border: 1.5px solid #ddd; border-radius: 10px; padding: .8rem 1rem; width: 100%;
}
.comment-form .submit {
	background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
	border: 0; border-radius: 50px; padding: .8rem 2.2rem; font-weight: 800; cursor: pointer; color: var(--black);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #ccc; padding-top: 4.5rem; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .site-logo { margin-bottom: 1.2rem; }
.footer-brand p { font-size: .92rem; line-height: 1.9; color: #aaa; }
.footer-col h4 { color: var(--gold); font-size: 1.1rem; font-weight: 800; margin-bottom: 1.2rem; }
.footer-menu li { margin-bottom: .6rem; }
.footer-menu a { color: #ccc; font-size: .94rem; transition: var(--transition); }
.footer-menu a:hover { color: var(--gold-2); padding-inline-start: .3rem; }
.footer-contact li { margin-bottom: .9rem; font-size: .94rem; }
.footer-contact strong { color: var(--gold-2); }
.footer-contact a:hover { color: var(--gold-2); }
.footer-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.3rem 0 calc(1.3rem + 0px); text-align: center; font-size: .88rem; color: #999; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
	position: fixed; bottom: 88px; inset-inline-end: 20px; z-index: 900;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--wa); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
	transition: var(--transition);
	animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes wa-pulse {
	0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .4); }
	70% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
	position: fixed; bottom: 0; inset-inline: 0; z-index: 950;
	display: none; background: var(--black);
	border-top: 2px solid var(--gold);
}
.mobile-bar-item {
	flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .85rem; color: var(--gold); font-weight: 800; font-size: 1rem;
}
.mobile-bar-item.wa { color: var(--wa); border-inline-start: 1px solid rgba(255, 255, 255, .12); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation: none !important; }
}

/* ---------- Search form ---------- */
.search-form { display: flex; gap: .6rem; max-width: 480px; margin-top: 1.4rem; }
.search-form input { flex: 1; border: 1.5px solid #ddd; border-radius: 50px; padding: .7rem 1.3rem; font-family: var(--font); }
.search-form button { border-radius: 50px; }

/* ---------- Not found ---------- */
.not-found h2 { margin: .6rem 0; }
.not-found p { color: var(--text-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.primary-nav .menu { gap: .9rem; }
	.primary-nav .menu a { font-size: .85rem; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.header-cta .btn { padding: .45rem 1rem; font-size: .85rem; }
}

@media (max-width: 940px) {
	.menu-toggle { display: block; }
	.header-cta { display: none; }
	/* backdrop-filter on the header would trap the fixed nav overlay inside it */
	.site-header { backdrop-filter: none; }
	.primary-nav {
		position: fixed; inset: 0; z-index: 1001;
		background: #0c0c0c;
		display: flex; align-items: flex-start; justify-content: center;
		padding-top: 110px; padding-bottom: 60px;
		overflow-y: auto;
		opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
	}
	.primary-nav.open { opacity: 1; visibility: visible; }
	.primary-nav .menu { flex-direction: column; align-items: center; gap: 0; width: min(320px, 86%); }
	.primary-nav .menu .menu-item { width: 100%; text-align: center; border-bottom: 1px solid rgba(201, 162, 75, .18); }
	.primary-nav .menu .menu-item:last-child { border-bottom: 0; }
	.primary-nav .menu a {
		display: block; font-size: 1.05rem; font-weight: 700;
		padding: 1rem .5rem; white-space: normal;
	}
	.primary-nav .menu a::after { display: none; }
	.primary-nav .menu a:hover { background: rgba(201, 162, 75, .08); }
	.hero { min-height: 78vh; }
	.contact-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.img-row { grid-template-columns: 1fr; }
	.section { padding: 4rem 0; }
	.mobile-bar { display: flex; }
	.footer-bottom { padding-bottom: 4.6rem; }
	.whatsapp-float { bottom: 84px; }
	body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
	.footer-grid { grid-template-columns: 1fr; }
	.services-grid, .posts-grid { grid-template-columns: 1fr; }
	.hero-actions .btn { flex: 1; justify-content: center; }
	.top-bar-phone span { font-size: .8rem; }
}

/* ---------- Editor styles ---------- */
.editor-styles-wrapper { font-family: var(--font); }
