/*
 * FG Site — Main stylesheet
 * All site-wide CSS lives here or in imported partials.
 * Loaded via wp_enqueue_style('fg-main-css') in fg_scripts() (functions.php).
 *
 * RTL:
 *   - Bootstrap uses bootstrap.rtl.min.css when fg_is_rtl_site() (see functions.php).
 *   - This file uses logical properties (margin-inline-*, text-align: start) and default
 *     direction on body for Arabic layouts.
 *   - Section 25b: Builda mobile drawer (.th-menu-wrapper) — panel from right, mirrored chevrons/padding.
 *
 * Naming convention: .fg- prefix for all product classes (BEM-style).
 */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
	/* Brand (from logo): primary gold, secondary teal */
	--fg-color-primary:   #D9A043;
	--fg-color-accent:    #0B5565;
	--fg-color-secondary: #0B5565;
	--fg-color-on-primary:#1a1a1a;
	--fg-color-text:      #2d2d2d;
	--fg-color-bg:        #ffffff;
	--fg-color-bg-alt:    #f4f7f8;
	--fg-color-border:    #d5e0e3;
	--fg-color-footer-bg: #062a33;
	--fg-color-footer-surface: #0d3d47;
	/* Match Builda vars in style.css — Cairo headings, Tajawal body (Google Fonts: fg-google-fonts) */
	--fg-font-heading:    "Cairo", "Tajawal", sans-serif;
	--fg-font-body:       "Tajawal", "Cairo", sans-serif;
	--fg-font-ar:         var(--fg-font-body);
	--fg-container-width: 1200px;
	--fg-gap:             1.5rem;
	--fg-radius:          var(--fg-radius-sm);
	--fg-color-muted: #5a5a5a;
	--fg-color-on-dark: #ffffff;
	--fg-color-footer-text: #9eb4b9;
	--fg-radius-sm: 6px;
	--fg-radius-md: 10px;
	--fg-radius-lg: 14px;
	--fg-radius-pill: 999px;
	--fg-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--fg-dur-fast: 0.2s;
	--fg-dur-normal: 0.4s;
	/* Collapse the 3 token namespaces: alias Builda vars onto the canonical FG tokens */
	--theme-color: var(--fg-color-primary);
	--title-color: var(--fg-color-text);
	--white-color: var(--fg-color-bg);
	--th-border-color: var(--fg-color-border);
	--body-color: var(--fg-color-muted);
	--smoke-color: var(--fg-color-bg-alt);
    /*--black-color2: #4A4A4A;*/
}

/* ============================================================
   2. Base reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	padding: 0;
	font-family: var(--fg-font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color: var(--fg-color-text);
	background: var(--fg-color-bg);
	direction: rtl;       /* Arabic RTL default — matches FR-011 / FR-012 */
	text-align: start;    /* logical — resolves to right for RTL */
}

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

/* ============================================================
   2a. Accessibility primitives
   ============================================================ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-text:focus-visible,
.skip-link:focus,
.skip-link:focus-visible {
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	position: fixed !important;
	/* Elementor's frontend.min.css loads after this file and sets a physical
	   `top: -10000em` on .screen-reader-text; per the logical/physical cascade
	   that later physical longhand defeats inset-block-start, so force `top`. */
	top: 1rem !important;
	inset-block-start: 1rem;
	inset-inline-start: 1rem;
	z-index: 100000;
	overflow: visible;
	background: var(--fg-color-accent);
	color: #fff;
	border-radius: var(--fg-radius-sm);
	box-shadow: 0 0 0 2px var(--fg-color-accent);
	outline: 3px solid #fff !important;
	outline-offset: 2px;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--fg-color-accent) !important;
	outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	border-color: var(--fg-color-accent);
	box-shadow: 0 0 0 2px rgba(11, 85, 101, 0.25);
}

/* ============================================================
   3. Layout helpers
   ============================================================ */
.fg-container {
	width: 100%;
	max-width: var(--fg-container-width);
	margin-inline: auto;
	padding-inline: var(--fg-gap);
}

/* ============================================================
   4. Typography
   ============================================================ */
.fg-section-title {
	font-family: var(--fg-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	margin-block-end: 1rem;
	line-height: 1.3;
}

.fg-sub-title {
	font-family: var(--fg-font-heading);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--fg-color-accent);
	margin-block-end: 0.5rem;
}

.fg-section-header { margin-block-end: 2rem; }

/* ============================================================
   5. Buttons
   ============================================================ */
.fg-btn {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	border-radius: var(--fg-radius);
	font-family: var(--fg-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	text-align: center;
}

.fg-btn--primary {
	background: var(--fg-color-primary);
	color: var(--fg-color-on-primary);
	border-color: var(--fg-color-primary);
}
.fg-btn--primary:hover {
	background: var(--fg-color-accent);
	border-color: var(--fg-color-accent);
	color: #fff;
}

.fg-btn--outline {
	background: transparent;
	color: var(--fg-color-accent);
	border-color: var(--fg-color-accent);
}
.fg-btn--outline:hover {
	background: var(--fg-color-accent);
	color: #fff;
	border-color: var(--fg-color-accent);
}

.fg-btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ============================================================
   6. Header (fallback + FG Header widget base)
   ============================================================ */
.fg-header,
.fg-header-fallback {
	position: sticky;
	inset-block-start: 0;
	z-index: 999;
	background: var(--fg-color-bg);
	border-block-end: 1px solid var(--fg-color-border);
}

.fg-header__inner,
.fg-header-fallback .fg-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fg-gap);
	padding-block: 1rem;
}

.fg-header__logo img { height: 48px; width: auto; }

/* Nav uses flex; logical start/end resolve correctly in RTL */
.fg-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.fg-header__mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.fg-header__mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--fg-color-text);
	border-radius: 2px;
}

@media (max-width: 768px) {
	.fg-header__nav,
	.fg-header__cta { display: none; }
	.fg-header__mobile-toggle { display: flex; }
}

/* ============================================================
   7. Footer (fallback + FG Footer widget base)
   ============================================================ */
.fg-footer,
.fg-footer-fallback {
	background: var(--fg-color-footer-bg);
	color: #c8d4d7;
	padding-block: 3rem 1.5rem;
}

.fg-footer__columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--fg-gap);
	margin-block-end: 2rem;
}

.fg-footer__col-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin-block-end: 1rem;
}

.fg-footer__col-links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.fg-footer__col-links li + li { margin-block-start: 0.5rem; }
.fg-footer__col-links a { color: #9eb4b9; }
.fg-footer__col-links a:hover { color: #fff; }

/* CF7 footer newsletter: keep two-column layout (title | form) inside .newsletter-wrap */
.newsletter-wrap > .wpcf7 {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}
@media (max-width: 1199px) {
	.newsletter-wrap > .wpcf7 {
		justify-content: center;
		width: 100%;
	}
}

.fg-footer__newsletter { margin-block-end: 2.5rem; }
.fg-footer__newsletter-title { color: #fff; font-size: 1.125rem; margin-block-end: 1rem; }
.fg-footer__newsletter-form {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.fg-footer__newsletter-input {
	flex: 1;
	min-width: 200px;
	padding: 0.65rem 1rem;
	border: 1px solid rgba(11, 85, 101, 0.55);
	border-radius: var(--fg-radius);
	background: var(--fg-color-footer-surface);
	color: #fff;
	direction: rtl;
}

.fg-footer__copyright {
	border-block-start: 1px solid rgba(11, 85, 101, 0.45);
	padding-block-start: 1rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--fg-color-footer-text);
}

/* ============================================================
   8. Hero
   ============================================================ */
.fg-hero { position: relative; overflow: hidden; }
.fg-hero__slide {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}
.fg-hero__content {
	padding: 3rem var(--fg-gap);
	max-width: 640px;
}
.fg-hero__heading {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 800;
	color: #fff;
	margin-block-end: 1rem;
	line-height: 1.2;
}
.fg-hero__sub {
	color: rgba(255,255,255,0.9);
	font-size: 1.0625rem;
	margin-block-end: 1.75rem;
}

/* ============================================================
   9. Section grids
   ============================================================ */
.fg-about-intro__grid,
.fg-about-video__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--fg-gap) * 2);
	align-items: center;
}

@media (max-width: 768px) {
	.fg-about-intro__grid,
	.fg-about-video__grid { grid-template-columns: 1fr; }
}

/* Projects / Services grid */
.fg-projects-strip__grid,
.fg-projects-archive__grid,
.fg-services-archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--fg-gap);
}

.fg-project-card,
.fg-service-card {
	border: 1px solid var(--fg-color-border);
	border-radius: var(--fg-radius);
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.fg-project-card:hover,
.fg-service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.fg-project-card__body,
.fg-service-card__body { padding: 1.25rem; }

.fg-project-card__title,
.fg-service-card__title {
	font-size: 1rem;
	font-weight: 700;
	margin-block-end: 0.5rem;
}
.fg-project-card__title a,
.fg-service-card__title a { color: var(--fg-color-accent); }
.fg-project-card__title a:hover,
.fg-service-card__title a:hover { color: var(--fg-color-accent); }

/* ============================================================
   10. Blog cards
   ============================================================ */
.fg-blog__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--fg-gap);
}
.fg-blog-card { border-radius: var(--fg-radius); overflow: hidden; }
.fg-blog-card__body { padding: 1rem; }
.fg-blog-card__title a { color: var(--fg-color-accent); font-weight: 700; }
.fg-blog-card__title a:hover { color: var(--fg-color-accent); }

/* ============================================================
   11. Team
   ============================================================ */
.fg-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--fg-gap);
	text-align: center;
}
.fg-team-card__photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin-inline: auto; }
.fg-team-card__name { font-weight: 700; margin-block-start: 0.75rem; }
.fg-team-card__role { color: #666; font-size: 0.875rem; }

/* ============================================================
   12. Counters / stats
   ============================================================ */
.fg-why-us__counters,
.fg-about-intro__stats,
.fg-about-video__stats,
.fg-awards__stats {
	display: flex;
	flex-wrap: wrap;
	gap: var(--fg-gap);
	margin-block-start: 2rem;
}
.fg-counter { text-align: center; min-width: 100px; }
.fg-counter__number { display: block; font-size: 2rem; font-weight: 800; color: var(--fg-color-accent); }
.fg-counter__label { font-size: 0.875rem; color: #555; }

/* ============================================================
   13. Breadcrumb
   ============================================================ */
.fg-breadcrumb-wrapper {
	background-size: cover;
	background-position: center;
	padding-block: 3rem;
	background-color: var(--fg-color-accent);
}
.fg-breadcrumb-title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 0.5rem; }
.fg-breadcrumb {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	color: rgba(255,255,255,0.85);
	font-size: 0.875rem;
	flex-wrap: wrap;
}
.fg-breadcrumb a { color: var(--fg-color-primary); }
.fg-breadcrumb a:hover { color: #fff; }
.fg-breadcrumb__sep { opacity: 0.6; }

/* ============================================================
   14. Contact form
   ============================================================ */
.fg-contact-section__grid,
.fg-contact-form-section {
	padding-block: 3rem;
}
.fg-contact-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: calc(var(--fg-gap) * 2);
	align-items: start;
}
@media (max-width: 768px) {
	.fg-contact-section__grid { grid-template-columns: 1fr; }
}

.fg-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--fg-gap);
}
@media (max-width: 576px) {
	.fg-form-row { grid-template-columns: 1fr; }
}

.fg-form-field { margin-block-end: 1.25rem; }
.fg-form-field label {
	display: block;
	font-weight: 600;
	margin-block-end: 0.35rem;
	font-size: 0.9rem;
}
.fg-form-field input,
.fg-form-field textarea {
	width: 100%;
	padding: 0.65rem 0.875rem;
	border: 1px solid var(--fg-color-border);
	border-radius: var(--fg-radius);
	font-family: var(--fg-font-ar);
	font-size: 0.9375rem;
	direction: rtl;
	background: #fff;
	color: var(--fg-color-text);
	transition: border-color 0.2s;
}
.fg-form-field input:focus,
.fg-form-field textarea:focus {
	outline: none;
	border-color: var(--fg-color-accent);
	box-shadow: 0 0 0 2px rgba(11, 85, 101, 0.15);
}

/* ============================================================
   14b. All forms — placeholder + value aligned to the right (Arabic / RTL UI)
   Covers Builda .form-control, CF7, FG REST form, Elementor Pro forms.
   ============================================================ */
body input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="image"]),
body textarea,
body select:not([multiple]):not([size]),
body .form-control:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]),
body .form-select,
body .wpcf7-form-control,
body .elementor-field-textual,
body .elementor-widget-form .elementor-field,
body .elementor-widget-form .elementor-field-type-text .elementor-field,
body .elementor-widget-form .elementor-field-type-email .elementor-field,
body .elementor-widget-form .elementor-field-type-textarea .elementor-field,
body .elementor-widget-form .elementor-field-type-tel .elementor-field,
body .elementor-widget-form .elementor-field-type-url .elementor-field,
body .elementor-widget-form .elementor-field-type-number .elementor-field,
body .elementor-widget-form .elementor-field-type-password .elementor-field {
	text-align: right;
	direction: rtl;
}

body .wp-block-search__input,
body .wp-block-post-comments-form input:not([type="submit"]):not([type="checkbox"]),
body .wp-block-post-comments-form textarea {
	text-align: right;
	direction: rtl;
}

body input::placeholder,
body textarea::placeholder,
body .form-control::placeholder,
body .form-select::placeholder,
body .wpcf7-form-control::placeholder,
body .elementor-field-textual::placeholder {
	text-align: right;
}

body input::-webkit-input-placeholder,
body textarea::-webkit-input-placeholder {
	text-align: right;
}

body input::-moz-placeholder,
body textarea::-moz-placeholder {
	text-align: right;
}

.fg-contact-form__response {
	margin-block-start: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--fg-radius);
	font-size: 0.9375rem;
}
.fg-contact-form__response.fg-success { background: #e8f5e9; color: #2e7d32; }
.fg-contact-form__response.fg-error   { background: #fce4e4; color: #b71c1c; }

/* ============================================================
   15. Testimonials
   ============================================================ */
.fg-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--fg-gap);
}
.fg-testimonial-card {
	background: var(--fg-color-bg-alt);
	border-radius: var(--fg-radius);
	padding: 1.5rem;
	border: 1px solid var(--fg-color-border);
}
.fg-testimonial-card__quote {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.7;
}
.fg-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.fg-testimonial-card__photo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* ============================================================
   16. Certifications
   ============================================================ */
.fg-certifications__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: var(--fg-gap);
	text-align: center;
}
.fg-cert-card { padding: 1rem; }
.fg-cert-card img { max-height: 80px; margin-inline: auto; margin-block-end: 0.5rem; }
.fg-cert-card__title { font-size: 0.875rem; font-weight: 600; }

/* ============================================================
   17. Checklist (service includes)
   ============================================================ */
.fg-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem 1rem;
}
@media (max-width: 576px) { .fg-checklist { grid-template-columns: 1fr; } }
.fg-checklist__item {
	padding-inline-start: 1.5rem;
	position: relative;
}
.fg-checklist__item::before {
	content: '✔';
	position: absolute;
	inset-inline-start: 0;
	color: var(--fg-color-primary);
}

/* ============================================================
   18. Process steps
   ============================================================ */
.fg-process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--fg-gap);
	counter-reset: step;
}
.fg-process-card { text-align: center; padding: 1.5rem; }
.fg-process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--fg-color-accent);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
	margin-block-end: 0.75rem;
}
.fg-process-card__title { font-weight: 700; margin-block-end: 0.5rem; }

/* ============================================================
   19. Map
   ============================================================ */
.fg-map, .fg-contact-info__map { overflow: hidden; border-radius: var(--fg-radius); }
.fg-map iframe, .fg-contact-info__map iframe { display: block; }
.fg-map-placeholder {
	background: var(--fg-color-bg-alt);
	padding: 2rem;
	border-radius: var(--fg-radius);
	text-align: center;
	color: #888;
}

/* ============================================================
   20. Instagram grid
   ============================================================ */
.fg-instagram__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 4px;
}
.fg-instagram__item img { aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ============================================================
   21. Sidebars (project / service)
   ============================================================ */
.fg-project-sidebar,
.fg-service-sidebar {
	background: var(--fg-color-bg-alt);
	border-radius: var(--fg-radius);
	padding: 1.5rem;
}
.fg-project-sidebar dt { font-weight: 700; font-size: 0.875rem; color: #555; }
.fg-project-sidebar dd { margin-inline-start: 0; margin-block-end: 0.75rem; }

/* ============================================================
   22. Empty state
   ============================================================ */
.fg-empty-state {
	text-align: center;
	padding: 3rem 1rem;
	color: #888;
	background: var(--fg-color-bg-alt);
	border-radius: var(--fg-radius);
	font-size: 1rem;
}

/* ============================================================
   23. Pagination
   ============================================================ */
.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-block-start: 2rem;
	width: 100%;
}
.page-numbers a,
.page-numbers span {
	min-width: 2.25rem;
	min-height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--fg-color-border);
	border-radius: var(--fg-radius);
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
}
.page-numbers .current {
	background: var(--fg-color-accent);
	color: #fff;
	border-color: var(--fg-color-accent);
}
.page-numbers a:hover {
	border-color: var(--fg-color-primary);
	color: var(--fg-color-accent);
}

.th-pagination a.page-numbers,
.th-pagination span.page-numbers,
a.page-numbers,
span.page-numbers,
.page-numbers a,
.page-numbers span {
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.th-pagination a.page-numbers,
.th-pagination span.page-numbers,
a.page-numbers,
span.page-numbers {
	width: auto;
	margin-block-start: 0;
}

/* ============================================================
   24. Contact map (matches template .contact-map iframe)
   ============================================================ */
.contact-map iframe {
	border: 0;
	display: block;
	width: 100%;
}

/* ============================================================
   24b. contact #contact-sec — Builda uses .contact-sec-map { left:0 } (text col on the other side).
   RTL: mirror map to the physical right and the address card inset from the right.
   ============================================================ */
.space#contact-sec {
	position: relative;
}
body.rtl #contact-sec .contact-sec-map {
    right: auto;
    left: 0;
}
body.rtl #contact-sec .contact-sec-map .location-map-address {
	left: auto;
	right: 15%;
}
@media (max-width: 991px) {
	body.rtl #contact-sec .contact-sec-map .location-map-address {
		left: auto;
		right: auto;
	}
}

/* ============================================================
   24c. A3 — contact .row.gx-35 horizontal overflow at <576px.
   `.gx-35` sets --bs-gutter-x:35px, so the row gets -17.5px side
   margins that exceed the full-bleed container's 12px padding,
   pushing ~6px past a 375px viewport. Clamp the gutter to 1.5rem
   (-12px margins) on small screens so it cancels the container padding.
   ============================================================ */
@media (max-width: 575.98px) {
	.fg-contact .row.gx-35 {
		--bs-gutter-x: 1.5rem;
	}
}

/* ============================================================
   25. Elementor — RTL container padding reset
   ============================================================ */
body.rtl .e-con {
	--padding-inline-start: 0 !important;
	--padding-inline-end: 0 !important;
	--padding-left: 0 !important;
	--padding-right: 0 !important;
	padding: 0 !important;
	padding-inline-start: 0 !important;
	padding-inline-end: 0 !important;

	--margin-inline-start: var(--margin-right);
	--margin-inline-end: var(--margin-left);
	--border-inline-start-width: var(--border-right-width);
	--border-inline-end-width: var(--border-left-width);
}

/* ============================================================
   25b. Builda mobile menu (.th-menu-wrapper) — RTL drawer + nav
   Off-canvas panel slides from the right; chevrons / padding mirror style.css (_mobilemenu.scss).
   ============================================================ */
body.rtl .th-menu-wrapper .th-menu-area,
html[dir="rtl"] .th-menu-wrapper .th-menu-area {
	left: auto;
	right: -110%;
	border-right: none;
	border-left: 1px solid var(--fg-color-border);
}

body.rtl .th-menu-wrapper.th-body-visible .th-menu-area,
html[dir="rtl"] .th-menu-wrapper.th-body-visible .th-menu-area {
	left: auto;
	right: 0;
}

body.rtl .th-menu-wrapper .th-menu-toggle,
html[dir="rtl"] .th-menu-wrapper .th-menu-toggle {
	right: auto;
	left: -16.5px;
}

body.rtl .th-mobile-menu,
html[dir="rtl"] .th-mobile-menu {
	text-align: right;
	direction: rtl;
}

body.rtl .th-mobile-menu ul li a,
html[dir="rtl"] .th-mobile-menu ul li a {
	padding-left: 0;
	padding-right: 18px;
}

body.rtl .th-mobile-menu ul li a:before,
html[dir="rtl"] .th-mobile-menu ul li a:before {
	left: auto;
	right: 0;
	margin-right: 0;
	margin-left: 10px;
	transform: scaleX(-1);
}

body.rtl .th-mobile-menu ul li.th-active > a:before,
html[dir="rtl"] .th-mobile-menu ul li.th-active > a:before {
	transform: scaleX(-1) rotate(90deg);
}

body.rtl .th-mobile-menu ul li ul,
html[dir="rtl"] .th-mobile-menu ul li ul {
	padding-left: 0;
	padding-right: 20px;
}

body.rtl .th-mobile-menu ul .menu-item-has-children > a .th-mean-expand,
html[dir="rtl"] .th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
	justify-content: flex-end;
}

body.rtl .th-mobile-menu ul .menu-item-has-children > a:after,
html[dir="rtl"] .th-mobile-menu ul .menu-item-has-children > a:after {
	float: left;
}

body.rtl .th-menu-toggle.style-text i,
body.rtl .th-menu-toggle.style-text-white i,
html[dir="rtl"] .th-menu-toggle.style-text i,
html[dir="rtl"] .th-menu-toggle.style-text-white i {
	margin-right: 0;
	margin-left: 10px;
}

body.rtl .breadcumb-menu li:not(:last-child):after {
	content: "\f060";
	margin-left: 0;
	margin-inline-start: 13px;
}

.icon-btn {
	min-width: 44px;
	min-height: 44px;
}

.scroll-top {
	border: 0;
	padding: 0;
	background: transparent;
}

@media (max-width: 400px) {
	body.rtl .th-menu-wrapper .th-menu-area,
	html[dir="rtl"] .th-menu-wrapper .th-menu-area {
		max-width: 270px;
	}
}

/* ============================================================
   26. Home hero (hero-13) — default .th-hero-bg (Arabian Gulf construction, 1920×1080)
   Matches fg-home-hero when data-bg-src is absent; overridden by JS when slide has a URL.
   ============================================================ */
.hero-slider13 .th-hero-bg {
	background-image: url(../img/hero/hero_bg_13_arabic_default.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/* ============================================================
   27. FG Core — honeypot wrapper (avoid inline style in widgets)
   ============================================================ */
.fg-honeypot {
	display: none !important;
}

.elementor-element {
    gap: 0 !important;
}
form .th-btn.style3 {
    text-align: center;
}
.service-card-icon img {
    margin: 0 auto;
    position: relative;
    top: 19px;
}

/* ============================================================
   28. Floating WhatsApp (above .scroll-top; Customizer: زر واتساب عائم)
   ============================================================ */
:root {
	--fg-whatsapp-size: 54px;
	--fg-scroll-float-size: 50px;
	--fg-float-stack-gap: 14px;
	--fg-float-edge: 30px;
}

.fg-whatsapp-float {
	position: fixed;
	/* Above Elementor sticky/popup layers (.scroll-top is 10000). */
	z-index: 999999;
	/* Physical right — matches .scroll-top in style.css (not logical start/end in RTL). */
	right: var(--fg-float-edge);
	left: auto;
	bottom: calc(var(--fg-float-edge) + var(--fg-scroll-float-size) + var(--fg-float-stack-gap));
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--fg-whatsapp-size);
	height: var(--fg-whatsapp-size);
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	isolation: isolate;
	-webkit-tap-highlight-color: transparent;
	box-shadow:
		0 4px 14px rgba(7, 94, 84, 0.35),
		0 2px 6px rgba(0, 0, 0, 0.12);
	transition:
		transform 0.4s var(--fg-ease),
		box-shadow 0.4s ease,
		color 0.2s ease,
		filter 0.35s ease;
}

/* Never inherit theme link hover (avoids black / wrong contrast). */
.fg-whatsapp-float:visited,
.fg-whatsapp-float:hover,
.fg-whatsapp-float:focus,
.fg-whatsapp-float:active {
	color: #fff;
	text-decoration: none;
}

.fg-whatsapp-float:focus-visible {
	outline: 3px solid var(--fg-color-primary, #d9a043);
	outline-offset: 3px;
}

.fg-whatsapp-float__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: linear-gradient(145deg, #2fe066 0%, #25d366 45%, #128c7e 100%);
	z-index: 0;
	transition:
		transform 0.45s var(--fg-ease),
		filter 0.35s ease,
		box-shadow 0.35s ease;
}

.fg-whatsapp-float__ring::before,
.fg-whatsapp-float__ring::after,
.fg-whatsapp-float__btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.55);
	pointer-events: none;
	z-index: 0;
	animation: fg-wa-ripple 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fg-whatsapp-float__ring::after {
	animation-delay: 0.93s;
}

.fg-whatsapp-float__btn::after {
	animation-delay: 1.86s;
	border-color: rgba(37, 211, 102, 0.4);
}

.fg-whatsapp-float__btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.fg-whatsapp-float__icon {
	position: relative;
	z-index: 1;
	width: 28px;
	height: 28px;
	fill: currentColor;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
	transition: transform 0.45s var(--fg-ease);
}

.fg-whatsapp-float:hover {
	color: #fff;
	transform: translateY(-4px) scale(1.05);
	box-shadow:
		0 10px 28px rgba(37, 211, 102, 0.45),
		0 6px 16px rgba(7, 94, 84, 0.35),
		0 0 0 4px rgba(37, 211, 102, 0.2);
}

.fg-whatsapp-float:hover .fg-whatsapp-float__ring {
	transform: scale(1.06);
	filter: brightness(1.08) saturate(1.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.fg-whatsapp-float:hover .fg-whatsapp-float__btn {
	transform: scale(1.02);
}

.fg-whatsapp-float:hover .fg-whatsapp-float__icon {
	transform: rotate(-10deg) scale(1.12);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fg-whatsapp-float:active {
	color: #fff;
	transform: translateY(-1px) scale(1.02);
	box-shadow:
		0 6px 18px rgba(37, 211, 102, 0.35),
		0 0 0 3px rgba(37, 211, 102, 0.15);
}

.fg-whatsapp-float:active .fg-whatsapp-float__icon {
	transform: rotate(-4deg) scale(1.05);
}

@keyframes fg-wa-ripple {
	0% {
		transform: scale(0.92);
		opacity: 0.6;
	}
	100% {
		transform: scale(2.2);
		opacity: 0;
	}
}

@media (max-width: 575.98px) {
	:root {
		--fg-whatsapp-size: 50px;
		--fg-scroll-float-size: 50px;
		--fg-float-stack-gap: 12px;
		--fg-float-edge: 16px;
	}

	.fg-whatsapp-float__icon {
		width: 26px;
		height: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fg-whatsapp-float__ring::before,
	.fg-whatsapp-float__ring::after,
	.fg-whatsapp-float__btn::after {
		animation: none;
	}

	.fg-whatsapp-float,
	.fg-whatsapp-float__btn,
	.fg-whatsapp-float__ring,
	.fg-whatsapp-float__icon {
		transition: none;
	}

	.fg-whatsapp-float:hover,
	.fg-whatsapp-float:active {
		transform: none;
	}

	.fg-whatsapp-float:hover .fg-whatsapp-float__ring,
	.fg-whatsapp-float:active .fg-whatsapp-float__ring {
		transform: none;
		filter: none;
		box-shadow: none;
	}

	.fg-whatsapp-float:hover .fg-whatsapp-float__icon,
	.fg-whatsapp-float:active .fg-whatsapp-float__icon {
		transform: none;
		filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
	}
}

.header-logo img {
    max-width: 110px!important;
}

/* ============================================================
   29. Design refinement pass (creative-minimal polish)
   Field Report system: gold discipline, RTL correctness, signature.
   ============================================================ */

/* 29a. Footer newsletter button — demote gold->teal so site-wide gold stays
   rare (<=10%) and AA-safe. Gold + white fails AA; teal + white passes. Gold
   returns only on hover (with ink text) as the earned reward. */
.fg-newsletter-wpcf7-submit.th-btn,
.newsletter-form .wpcf7-submit.th-btn,
.fg-footer__newsletter-form button {
	background-color: var(--fg-color-accent) !important;
	background-image: none !important;
	border-color: var(--fg-color-accent) !important;
	color: #fff !important;
}
.fg-newsletter-wpcf7-submit.th-btn:hover,
.fg-newsletter-wpcf7-submit.th-btn:focus-visible,
.newsletter-form .wpcf7-submit.th-btn:hover {
	background-color: var(--fg-color-primary) !important;
	border-color: var(--fg-color-primary) !important;
	color: var(--fg-color-on-primary) !important;
}

/* 29b. Phone numbers must render LTR even inside RTL flow (the leading "+" and
   digit groups otherwise reorder). Isolate the bidi run. */
a[href^="tel:"],
.footer-links a[href^="tel:"],
.info-box_link[href^="tel:"] {
	unicode-bidi: isolate;
	direction: ltr;
	display: inline-block;
}

/* 29c. RTL: forward/next arrows must point to the inline-start (left). Mirror
   explicit right-pointing FontAwesome arrows inside buttons, links, and
   breadcrumbs. Only flips right-arrows, so left/up/down glyphs are untouched. */
[dir="rtl"] .th-btn .fa-arrow-right,
[dir="rtl"] .th-btn .fa-long-arrow-right,
[dir="rtl"] .th-btn .fa-arrow-right-long,
[dir="rtl"] .th-btn .fa-angle-right,
[dir="rtl"] .th-btn .fa-chevron-right,
[dir="rtl"] .fg-btn .fa-arrow-right,
[dir="rtl"] a.th-btn .fa-arrow-right,
[dir="rtl"] .service-card a .fa-arrow-right,
[dir="rtl"] .property-card7 .fa-arrow-right,
[dir="rtl"] .checklist .fa-arrow-right {
	transform: scaleX(-1);
}

/* 29d. Gold underline signature on the main page title (one per page). Anchored
   to the inline-start (right edge in RTL). entry-title = page/post H1;
   breadcumb-title = inner-page banner H1. Card/section titles are intentionally
   left out so the seal stays rare. */
.entry-title:not(.fg-no-rule)::after,
.breadcumb-title::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin-block-start: 0.85rem;
	margin-inline-start: 0;
	border-radius: 2px;
	background: var(--fg-color-primary);
}
/* 29e. Banner H1 sizing: fluid and calmer than the vendor 48px/34px pair, which
   let long Arabic project titles dominate the whole banner. */
.breadcumb-title {
	font-size: clamp(1.55rem, 1.15rem + 1.6vw, 2.25rem);
	line-height: 1.25;
}

/* When the banner title is centered, center the rule too. */
.breadcumb-content.text-center .breadcumb-title::after,
.text-center > .breadcumb-title::after {
	margin-inline: auto;
}

.fg-whatsapp-float {
	box-shadow: 0 4px 14px rgba(7, 94, 84, 0.28);
}

/* 29f. Banner-less page title (e.g. About): content-page.php renders the WP
   entry-title full-bleed with no gutter, so the right-aligned RTL title hugged
   and clipped at the viewport edge. Constrain the header to the site container
   with inline padding and give the title breathing room above. */
.site-main > article > .entry-header {
	max-width: var(--fg-container-width);
	margin-inline: auto;
	padding-inline: var(--fg-gap);
	padding-block: clamp(2rem, 1.5rem + 3vw, 4rem) 0;
}
.site-main > article > .entry-header .entry-title {
	font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
	line-height: 1.15;
	color: var(--fg-color-text);
	margin: 0;
	overflow-wrap: break-word;
}

/* 29g. 404 — Field Report recovery page (template: 404.php). */
.fg-404__section {
	background: var(--fg-color-bg-alt);
}
.fg-404__inner {
	text-align: center;
	max-width: 680px;
}
.fg-404__code {
	font-family: var(--fg-font-heading);
	font-weight: 800;
	font-size: clamp(5rem, 3rem + 16vw, 12rem);
	line-height: 0.9;
	letter-spacing: 0.02em;
	color: var(--fg-color-accent);
	margin: 0;
	opacity: 0.92;
}
.fg-404__title {
	font-family: var(--fg-font-heading);
	font-weight: 800;
	font-size: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);
	color: var(--fg-color-text);
	margin: 1rem 0 0;
}
.fg-404__title::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin: 0.85rem auto 0;
	border-radius: 2px;
	background: var(--fg-color-primary);
}
.fg-404__text {
	max-width: 52ch;
	margin: 1.25rem auto 0;
	color: var(--fg-color-muted);
}
.fg-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-block-start: 2rem;
}
.fg-404__search {
	margin-block-start: 2.5rem;
}
/* A 404 is a focused recovery moment — drop the footer's consultation CTA here.
   The whole section is wrapped by .fg-home-cont (.contact-area-4-2). */
body.error404 .fg-home-cont,
body.error404 .contact-area-4-2 {
	display: none !important;
}

/* 29h. On-system search form (searchform.php). */
.fg-search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 30rem;
	margin-inline: auto;
}
.fg-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.7rem 1rem;
	border: 1px solid var(--fg-color-border);
	border-radius: var(--fg-radius);
	background: #fff;
	color: var(--fg-color-text);
	font-family: var(--fg-font-body);
	font-size: 0.95rem;
	direction: rtl;
	text-align: right;
}
.fg-search-form__input:focus {
	outline: none;
	border-color: var(--fg-color-accent);
	box-shadow: 0 0 0 2px rgba(11, 85, 101, 0.15);
}
.fg-search-form__submit {
	flex: 0 0 auto;
	cursor: pointer;
}

/* 29k. Legal / long-form pages (privacy-policy, terms) — content-page.php.
   .entry-content is full-bleed by default; the .fg-legal wrapper restores the
   site container and caps the reading measure so body text aligns under the
   right-aligned RTL title. Headings get a Field-Report hairline rule. */
.fg-legal {
	max-width: var(--fg-container-width);
	margin-inline: auto;
	padding-inline: var(--fg-gap);
	padding-block: clamp(1.25rem, 1rem + 1.5vw, 2.25rem) clamp(3rem, 2rem + 4vw, 5rem);
	color: var(--fg-color-text);
}
.fg-legal > * { max-width: 74ch; }
.fg-legal__updated {
	font-family: var(--fg-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--fg-color-muted);
	margin: 0 0 2rem;
}
.fg-legal h2 {
	font-family: var(--fg-font-heading);
	font-weight: 700;
	font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
	color: var(--fg-color-text);
	margin: 2.4rem 0 0.85rem;
	padding-block-end: 0.6rem;
	border-block-end: 1px solid var(--fg-color-border);
}
.fg-legal p {
	margin: 0 0 1rem;
	line-height: 1.85;
	color: var(--fg-color-muted);
}
.fg-legal ul {
	margin: 0 0 1rem;
	padding-inline-start: 1.4rem;
}
.fg-legal li {
	margin-block: 0.4rem;
	line-height: 1.7;
	color: var(--fg-color-muted);
}

/* 29j. Consultation/appointment form fields — replace the off-palette peach
   (#FFF5EB) field background with clean white so fields read on-system and stay
   legible on either a light or a dark section background. */
.appointment-form .form-control,
.appointment-form input:not([type="submit"]):not([type="button"]),
.appointment-form textarea,
.appointment-form select,
.appointment-wrap2 .form-control,
.appointment-wrap2 input:not([type="submit"]):not([type="button"]),
.appointment-wrap2 textarea,
.appointment-wrap2 select {
	background-color: #fff !important;
	color: var(--fg-color-text) !important;
}
.appointment-form .form-control:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
	box-shadow: 0 0 0 2px rgba(11, 85, 101, 0.18) !important;
	outline: none;
}
.appointment-form ::placeholder,
.appointment-wrap2 ::placeholder {
	color: var(--fg-color-muted);
	opacity: 1;
}

/* 29i. Search results summary (count + query echo) above the grid. */
.fg-search-summary {
	margin-block-end: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	padding-block-end: 1rem;
	border-block-end: 1px solid var(--fg-color-border);
}
.fg-search-summary__count {
	margin: 0;
	font-family: var(--fg-font-heading);
	font-size: clamp(1.05rem, 1rem + 0.4vw, 1.35rem);
	font-weight: 700;
	color: var(--fg-color-text);
	text-align: start;
}
.fg-search-summary__count::before {
	content: "";
	display: inline-block;
	inline-size: 28px;
	block-size: 3px;
	margin-inline-end: 0.6rem;
	vertical-align: middle;
	border-radius: 2px;
	background: var(--fg-color-primary);
}

/* ===== AA contrast overrides (WP2) ===== */
a {
	color: var(--fg-color-accent);
}

.fg-page-content a:not([class]),
.entry-content a:not([class]),
.th-blog a:not([class]),
.blog-single .blog-content a:not([class]),
.fg-project-entry-content a:not([class]) {
	color: var(--fg-color-accent);
}

.property-card7 .property-card-subtitle,
.property-card7.style2 .property-card-subtitle {
	color: var(--fg-color-accent);
}

.project-details-page .page-single > .text-theme,
.project-details-page .page-single .text-theme.mb-0 {
	color: var(--fg-color-accent) !important;
}

.widget_call .call:hover {
	color: var(--white-color);
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	/* A4: scroll/animation reveals default to opacity:0 and only become
	   visible once their keyframe runs. For reduced-motion users force them
	   visible so content is never permanently hidden. */
	.fadein, .scalein, .slidetopleft, .slidebottomright,
	.slideinleft, .slideinright, .slideindown, .slideinup,
	.rollinleft, .rollinright {
		opacity: 1 !important;
		transform: none !important;
		visibility: visible !important;
	}
}

/* ------------------------------------------------------------------ *
 * Inner-page transparent header.
 * Floats the header over an inner page's `.breadcumb-wrapper` banner with
 * light text, then hands off to the theme's frosted sticky bar once scrolled
 * past — visually matching the home hero header (see fg-hero-rise.css). Values
 * mirror the home treatment for consistency. Scoped under body.fg-inner-transparent
 * (added in inc/template-functions.php only on banner pages), so About / plain
 * pages keep the normal solid dark-on-light header. The banner's own dark
 * `.breadcumb-overlay` keeps the light nav readable, so unlike the hero we keep
 * the CTA + social VISIBLE (just light) instead of hiding them.
 * ------------------------------------------------------------------ */
body.fg-inner-transparent #fg-page {
	position: relative;
}

/* Overlay the header on the banner instead of taking layout space. */
body.fg-inner-transparent .th-header {
	position: absolute;
	top: 0;
	inset-inline: 0;
	z-index: 41;
	background: transparent;
}

/* Slim header at rest, transparent backgrounds on header + menu-area. */
body.fg-inner-transparent .th-header .menu-area {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	background: transparent !important;
}

body.fg-inner-transparent .th-header,
body.fg-inner-transparent .th-header .header-top,
body.fg-inner-transparent .sticky-wrapper:not(.sticky) {
	background: transparent !important;
	border-bottom: 0 !important;
}

/* Light nav + links over the dark banner (matches home vellum). */
body.fg-inner-transparent .th-header .main-menu > ul > li > a,
body.fg-inner-transparent .th-header .header-links a,
body.fg-inner-transparent .th-header .header-links i {
	color: var(--rise-vellum, #E8DFC8);
}

body.fg-inner-transparent .sticky-wrapper.sticky .main-menu > ul > li > a,
body.fg-inner-transparent .sticky-wrapper.sticky .header-links a,
body.fg-inner-transparent .sticky-wrapper.sticky .header-links i {
	color: var(--fg-color-text, #2d2d2d);
}

/* Banner clears the absolute header: the slim header is ~66px tall, so add
   comfortable top room above the H1 at every breakpoint (default banner top
   padding is 165/140/120px desktop/tablet/mobile — this keeps a clear gap). */
body.fg-inner-transparent .breadcumb-wrapper {
	padding-top: clamp(140px, 8vw + 90px, 215px);
}

/* Scrolled PAST the banner: the theme's fixed sticky bar, frosted light.
   !important so it wins over the theme's white sticky bg at equal specificity. */
body.fg-inner-transparent .sticky-wrapper.sticky {
	background-color: rgba(255, 255, 255, 0.92) !important;
	-webkit-backdrop-filter: blur(12px) saturate(1.1);
	backdrop-filter: blur(12px) saturate(1.1);
	box-shadow: 0 1px 0 rgba(13, 61, 71, 0.06), 0 10px 30px rgba(6, 42, 51, 0.12);
}

/* Keep the slim height in the docked/sticky state (the theme balloons
   menu-area padding and nav-link padding to ~41px when sticky). */
body.fg-inner-transparent .sticky-wrapper.sticky {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

body.fg-inner-transparent .sticky-wrapper.sticky .main-menu > ul > li > a {
	padding-top: 6px !important;
	padding-bottom: 6px !important;
}
