:root {
	--gold: #d9a522;
	--gold-dark: #ad7b08;
	--navy: #10263c;
	--navy-soft: #1c3b57;
	--ink: #17212b;
	--muted: #657180;
	--surface: #ffffff;
	--canvas: #f5f7fa;
	--border: #e2e7ec;
	--radius: 18px;
	--shadow: 0 16px 45px rgba(16, 38, 60, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-soft); text-decoration: none; }
a:hover { color: var(--gold-dark); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; margin-top: 0; }
p { margin-top: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container--narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: 88px 0; }
.section--soft { background: #edf3f7; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.eyebrow { margin-bottom: 10px; color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus, .skip-link:focus { clip: auto; width: auto; height: auto; top: 8px; left: 8px; padding: 12px 18px; color: #fff; background: var(--navy); z-index: 100000; }
:focus-visible { outline: 3px solid rgba(217, 165, 34, .65); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--border); backdrop-filter: blur(14px); }
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.site-branding { flex: 0 0 auto; }
.custom-logo-link, .site-branding__fallback { display: inline-flex; align-items: center; gap: 12px; }
.custom-logo { width: 72px; max-height: 72px; object-fit: contain; }
.site-branding__mark { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #f1c757, var(--gold-dark)); font-weight: 900; }
.site-branding__text { display: grid; color: var(--navy); line-height: 1.2; }
.site-branding__text small { color: var(--muted); font-size: .72rem; }
.primary-navigation { margin-left: auto; }
.primary-menu, .primary-menu ul, .footer-menu, .contact-list { list-style: none; padding: 0; margin: 0; }
.primary-menu { display: flex; align-items: center; gap: 4px; }
.primary-menu > li { position: relative; }
.primary-menu a { display: block; padding: 14px 13px; color: var(--navy); font-weight: 650; }
.primary-menu a:hover, .primary-menu .current-menu-item > a { color: var(--gold-dark); }
.primary-menu ul { position: absolute; inset-inline-start: 0; top: 100%; min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); transition: .2s ease; }
.primary-menu li:hover > ul, .primary-menu li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu ul a { padding: 10px 12px; border-radius: 8px; }
.primary-menu ul a:hover { background: var(--canvas); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone, .account-link { white-space: nowrap; font-size: .9rem; font-weight: 700; }
.account-link { padding: 10px 15px; color: #fff; background: var(--navy); border-radius: 999px; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: #fff; cursor: pointer; }
.menu-toggle__icon, .menu-toggle__icon::before, .menu-toggle__icon::after { display: block; width: 22px; height: 2px; margin: auto; background: var(--navy); content: ""; }
.menu-toggle__icon::before { transform: translateY(-7px); }
.menu-toggle__icon::after { transform: translateY(5px); }

.hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(120deg, #10263c, #315a78); background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 22, 36, .89) 0%, rgba(7, 22, 36, .58) 50%, rgba(7, 22, 36, .18) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 760px; padding: 100px 0; }
.hero h1 { max-width: 900px; color: #fff; font-size: clamp(2.7rem, 7vw, 5.6rem); letter-spacing: -.04em; margin-bottom: 22px; }
.hero__text { max-width: 680px; color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button, button[type="submit"], input[type="submit"], .wp-element-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 22px; border: 1px solid var(--gold); border-radius: 999px; color: #1a2430; background: var(--gold); font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover, button[type="submit"]:hover, input[type="submit"]:hover { color: #fff; background: var(--gold-dark); transform: translateY(-2px); }
.button--secondary { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(16,38,60,.05); transition: transform .2s, box-shadow .2s; }
.service-card:hover { color: var(--ink); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: auto; color: #fff; background: var(--navy); border-radius: 14px; font-weight: 900; }
.service-card h3 { margin: 20px 0 6px; font-size: 1.25rem; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.content-card { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(16,38,60,.06); }
.content-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: linear-gradient(135deg, #dce7ee, #aec4d3); }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.content-card:hover .content-card__media img { transform: scale(1.04); }
.content-card__placeholder { display: block; width: 100%; height: 100%; }
.content-card__body { padding: 24px; }
.content-card__title { margin: 8px 0 10px; font-size: 1.35rem; }
.content-card__title a { color: inherit; }
.content-card__excerpt { color: var(--muted); }
.entry-meta { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: .82rem; }
.text-link { color: var(--gold-dark); font-weight: 800; }
.pagination, .nav-links { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { padding: 8px 13px; background: #fff; border: 1px solid var(--border); border-radius: 8px; }
.page-numbers.current { color: #fff; background: var(--navy); }

.page-header { padding: 82px 0 55px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.page-header h1 { margin-bottom: 0; color: #fff; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.page-header .entry-meta, .page-header .archive-description { color: rgba(255,255,255,.72); }
.page-header--single { padding-bottom: 70px; }
.entry-wrap { padding-top: 58px; padding-bottom: 88px; }
.entry-hero { margin: 0 0 38px; overflow: hidden; border-radius: var(--radius); }
.entry-content { font-size: 1.06rem; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin-top: 2em; }
.entry-content a { color: var(--gold-dark); text-decoration: underline; }
.entry-content blockquote { margin: 32px 0; padding: 22px 26px; border-inline-start: 4px solid var(--gold); background: #fff; border-radius: 10px; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--border); }
.entry-tags { margin-top: 32px; }
.entry-tags a { display: inline-block; margin: 4px; padding: 5px 10px; background: #e8eef3; border-radius: 999px; }
.comments-area { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.comment-list { padding-left: 22px; }
.comment-body { margin-bottom: 22px; padding: 20px; background: #fff; border-radius: 12px; }
input[type="text"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], textarea, select { width: 100%; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #cbd5df; border-radius: 10px; }
textarea { min-height: 150px; }
.search-form { display: flex; gap: 10px; max-width: 650px; }
.search-form label { flex: 1; }
.empty-state, .error-page { text-align: center; }
.empty-state { padding: 50px; background: #fff; border-radius: var(--radius); }
.error-page { min-height: 65vh; display: grid; place-items: center; padding: 90px 0; }
.error-page .search-form { margin: 28px auto 18px; }
.error-code { margin: 0; color: var(--gold); font-size: clamp(5rem, 18vw, 11rem); font-weight: 950; line-height: .8; }

.cta { padding: 78px 0; color: #fff; background: var(--navy); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin-bottom: 8px; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.site-footer { padding-top: 72px; color: rgba(255,255,255,.75); background: #091827; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.site-footer .site-branding__text strong, .footer-heading { color: #fff; }
.site-footer .site-branding__text small { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 430px; margin-top: 22px; }
.footer-menu li, .contact-list li { margin-bottom: 9px; }
.footer-menu a, .contact-list a { color: rgba(255,255,255,.75); }
.footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 48px; }
.footer-bottom { margin-top: 55px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__inner { padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .88rem; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; color: #fff; background: #22b968; border-radius: 50%; box-shadow: var(--shadow); font-weight: 900; }
.whatsapp-float:hover { color: #fff; transform: translateY(-3px); }
.commerce-wrap .woocommerce { min-height: 420px; }
.woocommerce ul.products li.product { padding: 18px; background: #fff; border-radius: 14px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { color: #17212b; background: var(--gold); border-radius: 999px; }

body.is-rtl { direction: rtl; }
body.is-rtl .primary-navigation { margin-left: 0; margin-right: auto; }
body.is-rtl .whatsapp-float { right: auto; left: 22px; }

@media (max-width: 960px) {
	.admin-bar .site-header { top: 46px; }
	.header-inner { min-height: 76px; flex-wrap: wrap; }
	.custom-logo { width: 60px; max-height: 60px; }
	.menu-toggle { display: block; }
	.header-actions { display: none; }
	.primary-navigation { display: none; order: 4; width: 100%; margin: 0; padding-bottom: 18px; }
	.primary-navigation.is-open { display: block; }
	.primary-menu { display: block; }
	.primary-menu a { padding: 12px 6px; border-bottom: 1px solid var(--border); }
	.primary-menu ul { position: static; min-width: 0; padding: 0 0 0 16px; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
	.container, .container--narrow { width: min(100% - 28px, 1180px); }
	.section { padding: 62px 0; }
	.hero { min-height: 540px; }
	.hero__content { padding: 76px 0; }
	.service-grid, .card-grid, .footer-grid, .footer-widgets { grid-template-columns: 1fr; }
	.search-form { flex-direction: column; }
	.page-header { padding: 60px 0 42px; }
	.empty-state { padding: 32px 20px; }
}
