/*!
Theme Name: SF SureStudio Theme
Theme URI: http://saadfaris.com
Author: Saad Faris
Author URI: http://saadfaris.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sf-links
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}


body,
html {
	margin: 0;
	padding: 0;
	background-color: #000;
  overflow-x: hidden;
  overscroll-behavior: none; /* يمنع التمرير المطاطي بالجوال */
	font-family: "minion-pro", serif;
cursor: none;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #00FF00;
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

  .sf-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: #00FF00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
    mix-blend-mode: difference;
  }

body {
	margin: 0;
}


main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}


body,
button,
input,
select,
optgroup,
textarea {
	color: #f5dcb0;
	font-family: "minion-pro", serif;
	font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: "minion-pro", serif;
}

abbr,
acronym {
	border-bottom: 1px dotted #f5dcb0;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}


hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

a {
	color: #f5dcb0;
}

a:visited {
	color: #f5dcb0;
}

a:hover,
a:focus,
a:active {
	color: #00FF00;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}


button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #111;
	color: #00FF00;
	border: 1px solid #333;
	border-radius: 3px;
	padding: 0.6em 1em 0.4em;
	font-family: "basic-sans", sans-serif;
	line-height: 1;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #000;
	border-color: #00FF00;
	color: #f5dcb0;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #00FF00;
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background-color: #111;
	color: #f5dcb0;
	border: 1px solid #333;
	border-radius: 3px;
	padding: 3px;
	font-family: "minion-pro", serif;
}

input:focus,
textarea:focus {
	color: #fff;
	border-color: #00FF00;
	background-color: #000;
	outline: none;
}

select {
	background-color: #111;
	color: #f5dcb0;
	border: 1px solid #333;
	border-radius: 3px;
}

textarea {
	width: 100%;
}

@media screen and (max-width: 768px) {
.sf-cursor {
    display: none;
  }
	
	.sf-work-logo-inline svg {
    height: 22px !important;
}
	
	.sf-work-tab {
    line-height: 2 !important;
}

}
a {
	text-decoration: none;
}

a.sf-book-btn {
    color: black;
}

a.sf-book-btn:hover {
    color: black;
}


.sf-join-btn:visited {
    background: #00ff00;
    color: black;
}

.sf-max-width-all {
	max-width: 1200px;
	width: 93%;
	margin: 20px auto;
}

.sf-banner {
	height: 100vh;
}

canvas {
	display: block;
}

#canvas3d {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100vh;
	transition: opacity 0.4s ease;
}

.overlay-color {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
	pointer-events: none;
}

.sf-intro-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #f5dcb0;
	line-height: 1.2;
	font-weight: 400;
	z-index: 15;
}

.sf-svg-logo-i-b {
	margin: 0 auto;
}

.sf-svg-logo-i-b svg {
    fill: #00ff00;
    height: 100px;
    min-width: 230px;
    width: 100%;
}

.sf-intro-text .sf-top-line {
	font-size: 75px;
	opacity: 0;
	transform: scale(0.3);
	font-family: "basic-sans", sans-serif;
}

.sf-intro-text .sf-bottom-line {
	font-size: 74px;
	font-style: italic;
	font-weight: 600;
	opacity: 0;
	transform: scale(0.4);
}

@media screen and (max-width: 768px) {
	
.sf-svg-logo-i-b svg {
        fill: #00ff00;
        height: 44px;
        min-width: 60px;
        width: 100%;
        margin: 20px auto;
    }
	
.sf-intro-text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #f5dcb0;
	line-height: 1.2;
	font-weight: 400;
	z-index: 3;
}

.sf-intro-text .sf-top-line {
	font-size: 30px;
	opacity: 0;
	transform: scale(0.3);
	font-family: "basic-sans", sans-serif;
}

.sf-intro-text .sf-bottom-line {
	font-size: 28px;
	font-style: italic;
	font-weight: 600;
	opacity: 0;
	transform: scale(0.4);
}
}

.sf-image-box {
	position: absolute;
	width: 250px;
	height: 150px;
	background-size: cover;
	background-position: center;
	opacity: 0;
	pointer-events: none;
	transform: scale(0.8);
	transition: opacity 1s ease, transform 0.8s ease;
	z-index: 4;
}

.sf-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
	z-index: 1005;
}

.sf-logo {
	font-weight: 400;
	color: #fddcb1;
}

.sf-logo svg {
	max-width: 180px;
	margin-top: -2px;
	fill: #fddcb1;
	transition: fill 0.3s ease;
}

body.menu-open .sf-logo svg {
	fill: #000000;
}

.sf-nav-links {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 2rem;
	align-items: center;
	z-index: 10;
}

.sf-nav-links a {
	text-decoration: none;
	color: #fddcb1;
	font-weight: 400;
}

.sf-book-btn {
	margin-left: auto;
	background-color: #00FF00;
	color: black;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-weight: bold;
	font-style: italic;
}
.sf-mobile-menu {
	visibility: hidden;
}

.sf-mobile-menu.show {
	visibility: visible;
}
/* phone */
@media screen and (max-width: 768px) {
	.sf-logo svg {
		max-width: 160px;
		margin-top: 10px;
	}

	.sf-nav-links,
	.sf-book-btn {
		display: none;
	}

	.sf-book-btn-in {
		background: #00FF00;
		color: black;
		width: 300px;
		font-weight: bold;
		font-style: italic;
	}
	
	a.sf-book-btn-in {
		color: black;
	}
	
		a.sf-book-btn-in:hover {
		color: black;
	}

	.sf-menu-wrapper {
		display: block;
		position: absolute;
		top: 2rem;
		right: 1rem;
		z-index: 1101;
	}

	.sf-menu-toggle {
		display: block;
		color: black;
		background-color: #00FF00;
		padding: 0.3rem 1rem;
		border-radius: 2rem;
		font-style: italic;
		font-weight: bold;
		cursor: pointer;
		z-index: 1101;
	}
	
		.sf-menu-toggle:hover {
color: black;
	}
	#sfClose {
		position: fixed;
		color: black;
		top: 2rem;
		right: 1rem;
		z-index: 1102 !important;
	}
	
		#sfClose:hover {

			color: black;}

	.sf-mobile-menu {
		display: none;
		position: fixed;
		top: 0;
		padding-top: 80px;
		padding-left: 30px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fddcb1;
		color: black;
		flex-direction: column;
		z-index: 1000;
		transform: translateY(-100%);
		opacity: 0;
		transition: transform 0.4s ease, opacity 0.4s ease;
	}

	.sf-mobile-menu.show {
		display: flex;
		transform: translateY(0%);
		opacity: 1;
		
	}

	.sf-mobile-menu a {
		margin: 1rem 0;
		font-size: 2rem;
		text-decoration: none;
		color: black;
		font-weight: 900;
	}
	
		.sf-mobile-menu a:hover {
			color: #00FF00;
	}

	.sf-mobile-socials {
		margin-top: 370px;
		font-style: italic;
		font-weight: bold;
		width: 200px;
	}
}

@media screen and (min-width: 769px) {
	.sf-menu-wrapper,
	.sf-mobile-menu {
		display: none !important;
	}
}


.sf-about-section {
  color: #f5dcb0;
  background-color: #000;
}

.sf-about-intro {
	font-family: basic-sans, sans-serif;
	font-weight: 400;
  margin-bottom: 3rem;
  text-align: right;
}

.sf-about-intro .sf-line-top {
  margin: 0;
  font-size: 18px;
}

.sf-about-intro .sf-line-bottom {
  margin: 0;
  font-size: 18px;
}

.sf-about-description {
	font-family: basic-sans, sans-serif;
	font-weight: 400;
	max-width: 730px;
	width: 99%;
  font-size: 16px;
  line-height: 1.8;
}

.sf-alt-font {
  font-style: italic;
  font-family: "minion-pro", serif;
}

.sf-italic {
  font-style: italic;
}

@media screen and (max-width: 768px) {
	.sf-about-intro {
		font-size: 16px;
	}
	.sf-about-description {
		font-size: 14px;
	}

}


.sf-projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 55px;
}

.sf-section-title {
  font-family: "minion-pro", serif;
  font-size: 3rem;
  font-style: italic;
  color: #f5dcb0;
  margin: 0;
}

.sf-see-more {
  font-style: italic;
  font-weight: 800;
	font-size: 19px;
  color: #f5dcb0;
	border-bottom: 4px solid #f5dcb0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sf-see-more:hover {
  color: #00ff00;
	border-bottom: 4px solid #00ff00;
}

.sf-projects-description {
  color: #f5dcb0;
  font-size: 1rem;
	max-width: 470px;
	width: 99%;
  line-height: 1.6;
	font-family: basic-sans, sans-serif;
}


.sf-projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sf-projects-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-style: italic;
  margin: 0;
}

.sf-projects-link {
  font-style: italic;
  font-weight: bold;
  color: #fddcb1;
  text-decoration: none;
  transition: opacity 0.3s;
}
.sf-projects-link:hover {
  opacity: 0.6;
}

.sf-projects-description {
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Grid Container */
.sf-portfolio-grid {
    display: grid;
    gap: 20px;
}

/* Card Base Styles */
.sf-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sf-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.sf-card-content {
    padding-top: 5px;
}

.sf-card-content h3 {
    margin: 0;
    font-size: 1.2em;
  font-family: "minion-pro", serif;
  font-style: italic;
}

.sf-card-content p {
    margin: 0;

}

/* Desktop Layout (1200px and up) */
@media (min-width: 1201px) {
    .sf-portfolio-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tablet Layout (769px to 1200px) */
@media (max-width: 1200px) {
    .sf-portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Layout (768px and down) */
@media (max-width: 768px) {
    .sf-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .sf-card-standard img {
        height: 250px;
    }

    .sf-card-wide img {
        height: 350px;
    }
}


.sf-services-list {
    list-style-type: none;
    margin: 0;
    padding: 0; 
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
	font-family: basic-sans, sans-serif;
}

.sf-services-list li {
    font-size: 0.85em;
    margin-right: 10px;
    padding: 0px;
    color: #fff; 
    line-height: 1.5; 
}


/* 1. تجهيز غلاف الصورة للتأثير */
.sf-card-image-wrapper {
    position: relative; /* ضروري لتثبيت الطبقات الوهمية عليه */
    overflow: hidden; /* لإخفاء أي أجزاء من التأثير تخرج عن إطار الصورة */
    line-height: 0; /* لإزالة أي مسافات إضافية قد يسببها الـ div */
}

/* 2. تطبيق الطبقات الوهمية على غلاف الصورة فقط */
.sf-card-image-wrapper::before,
.sf-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sf-card-image-wrapper::before {
    background: #00FF00;
    mix-blend-mode: color;
}

.sf-card-image-wrapper::after {
    background: rgba(0, 255, 0, 0.5);
}

.sf-card:hover .sf-card-image-wrapper::before,
.sf-card:hover .sf-card-image-wrapper::after {
    opacity: 1;
}

.sf-card:hover .sf-card-content h3 {
    color: #00FF00;
}

.sf-card:hover .sf-card-content .sf-services-list li {
    color: #00FF00;
}

.sf-card:hover {
    transform: scale(1);
}


/* CSS النهائي لتنسيق جميع الخطوات بدقة */
.riyadh-time-footer {
	color: #000000;
	font-size: 17px;
  font-family: "minion-pro", serif;
}

.riyadh-time-footer i{
	font-style: italic;
	font-weight: 700;
	color: #000000;
	font-size: 17px;
}

.step.ea-step-active {
    color: black !important;
}

.ea-standard {
	    max-height: 590px !important;
    height: 100% !important;
    max-width: 420px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background-color: #FFDBAA !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    animation: fadeIn 0.4s !important;
}

/* --- إدارة الخطوات --- */
.ea-standard > form > .step { display: none; animation: fadeIn 0.4s; }
.ea-standard > form > .ea-step-active { display: block !important; }
.ea-standard .ea-label, .ea-standard .block, .ea-standard .section, .ea-standard small, .ea-standard br { display: none !important; }

/* --- عنوان الخطوة --- */
.ea-step-title {
    font-weight: bold;
    font-size: 32px;
    color: #000000;
    font-family: "basic-sans", sans-serif;
    margin-top: -3px !important;
    margin-bottom: 20px !important;
}

/* --- 1. التقويم (Select a Day) --- */
.ea-standard .step.calendar .ui-datepicker-next {
    right: 0;
    float: right;
}
.ea-standard .step.calendar .ui-datepicker { background: transparent !important; border: none !important; width: 100% !important; padding: 0 !important; }
.ea-standard .step.calendar .ui-datepicker-header { background: transparent !important; border: none !important; padding: 0 0 15px 0 !important; position: relative; }
.ea-standard .step.calendar .ui-datepicker-title { color: #000; font-size: 22px; font-weight: 600; text-align: center; }
.ea-standard .step.calendar .ui-datepicker-prev, .ea-standard .step.calendar .ui-datepicker-next { top: 0 !important; cursor: pointer; }
.ea-standard .step.calendar .ui-datepicker-prev { left: 0; }
.ea-standard .step.calendar .ui-datepicker-next { right: 0; }
.ea-standard .step.calendar .ui-datepicker-prev::before { content: '\003C'; font-size: 22px; font-weight: bold; color: #000; }
.ea-standard .step.calendar .ui-datepicker-next::before { content: '\003E'; font-size: 22px; font-weight: bold; color: #000; }
.ea-standard .step.calendar .ui-datepicker-prev span, .ea-standard .step.calendar .ui-datepicker-next span { display: none !important; }
.ea-standard .step.calendar .ui-datepicker-calendar th { color: #000; font-weight: 600; text-transform: uppercase; }
.ea-standard .step.calendar .ui-datepicker-calendar td { padding: 0px 0px 15px 0px !important; }
.ea-standard .step.calendar .ui-datepicker-calendar td span,
.ea-standard .step.calendar .ui-datepicker-calendar td a {
    background: transparent !important;
    border: none !important;
    color: #000 !important;
    text-align: center !important;
    font-weight: 500;
    padding: 0px !important;
    display: block;
    border-radius: 0px !important;
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin: auto;
}
.ea-standard .step.calendar .ui-datepicker-unselectable span { color: #000000 !important; }
.ea-standard .step.calendar .ui-datepicker-calendar td a:hover { background: #00ff00 !important; }
.ea-standard .step.calendar .ui-datepicker-calendar td a.ui-state-active { background: #00ff00 !important; color: #000000 !important; }

/* --- 2. الأوقات (Select a Time) --- */
.ea-standard .time { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; }
.ea-standard .time .time-value {
    background-color: transparent !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    border-radius: 0px !important;
    padding: 3px 5px !important;
    text-align: center !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
}
.ea-standard .time .time-value:hover { background-color: #00ff00 !important; border-color: #00ff00 !important; }
.ea-standard .time .time-value.selected-time {     background-color: #00ff00 !important;
    color: #000000 !important;
    border-color: #00ff00 !important; }
.ea-standard .time .time-value.disabled { background: #00000032 !important; color: #000000 !important; border-color: #00000032 !important; cursor: not-allowed !important; }

/* --- 3. المعلومات الشخصية --- */
.ea-standard .step.final p { margin: 0 0 7px 0; }
.ea-standard .step.final p label {     display: block !important;
    font-weight: 600 !important;
    color: #000 !important;
    padding-bottom: 0px !important; }
.ea-standard .step.final input, .ea-standard .step.final textarea {     width: 100%;
    color: black !important;
    padding: 8px;
    border: 2px solid #000 !important;
    border-radius: 8px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;}
    .ea-standard .step.final p:has(input[name="name"]), .ea-standard .step.final p:has(input[name="phone"]) { display: inline-block; width: 100%; }
.ea-standard .step.final p:has(input[name="name"]) { margin-right: 16px; }

button.ea-btn.ea-submit {
    display: none !important;
}

button.ea-btn.ea-cancel {
    display: none !important;
}

.ea_hide_show {
    margin-top: 20px !important;
    margin-bottom: -20px !important;
}

/* --- أزرار التنقل --- */
.ea-nav-container { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.nav-button {     padding: 12px 28px;
    font-family: "minion-pro", serif;
    font-style: italic;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer; }
.nav-button.next-btn, .nav-button.submit-btn { background-color: #00ff00; color: #000000; }
.nav-button.back-btn {     background-color: #0000003d;
    color: #000000; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

div#booking-overview {
    color: black !important;
}

pre.wp-block-preformatted {
    box-sizing: border-box;
    white-space: pre-wrap;
    line-height: normal !important;
    margin: 0px !important;
    padding: 0px !important;
}

table.ui-datepicker-calendar {
    margin: 0px !important;
}

tr.row-worker {
    visibility: hidden !important;
    display: none !important;
}


.sf-services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sf-services-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-style: italic;
  margin: 0;
}


.sf-services {
  background: #000;
  color: #FFDBAA;
  margin: auto;
}

.sf-tab {
  border-bottom: 1px solid #FFDBAA;
}

.sf-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
}

.sf-tab-header h3 {
  margin: 0;
  font-style: italic;
  font-size: 1.5em;
}

.sf-arrow-icon {
  transition: transform 0.3s ease;
}

.sf-tab-content {
  display: none;
  padding: 0 0 20px 0;
  animation: fadeIn 0.3s ease;
}

.sf-tab-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sf-tab-desc {
  flex: 1;
  margin: 0;
}

.sf-see-more-in-ser {
  color: #00ff00;
  font-size: 0.9em;
  text-decoration: none;
  white-space: nowrap;
}

.sf-tab.active .sf-tab-content {
  display: block;
}

.sf-tab.active .sf-arrow-icon {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



.sf-booking-d {
	margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #000;
  color: #FFDBAA;
	font-family: basic-sans, sans-serif;

  gap: 40px;
  align-items: flex-start;
}

.sf-booking-text-d {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.sf-booking-text-d h2 {
  font-size: 45px;
  font-style: normal;
  margin-bottom: 0px;
}

.sf-booking-text-d h2 em {
  font-style: italic;
  display: inline;
    font-family: "minion-pro", serif;
}

.sf-session-time-d {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 0px;
}

.sf-session-time-d em {
  font-style: italic;
    font-family: "minion-pro", serif;
}

em {
    font-style: italic;
    font-family: "minion-pro", serif;
}

.sf-session-desc-d {
  font-size: 1em;
  color: #ddd;
}

.sf-booking-calendar-d {
    flex: 1;
    min-width: 280px;
    transform: scale(0.85);
    transform-origin: top right;
    /* max-width: 400px; */
    /* background: #FFDBAA; */
    padding: 10px;
    color: #000;
    box-sizing: border-box;
}

@media (max-width: 768px) {
.sf-booking-calendar-d {
    flex: 1;
    width: 100%;
    transform: scale(1);
    padding: 0px;
    color: #000;
    box-sizing: border-box;
    transform-origin: top center;
}
}

.sf-calendar-placeholder-d {
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 0;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .sf-booking-d {
    flex-direction: column;
  }

  .sf-booking-text-d, .sf-booking-calendar-d {
    max-width: 100%;
  }
}

.sf-footer {
		max-width: 1200px;
	width: 93%;
	margin: 80px auto;
  background: #000;
  color: #FFDBAA;
  text-align: center;
	font-family: basic-sans, sans-serif;
}

.sf-footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.sf-join {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sf-join-btn {
  background: #00ff00;
  color: black;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
	border: 2px solid #00ff00;
}

.sf-join-btn:hover {
  background: #000000;
	border: 2px solid #00ff00;
  color: #00ff00;
}

.sf-footer-text {
  font-size: 1em;
}

.sf-footer .sf-logo svg {
  height: 15px;
	margin-bottom: 4px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  fill: #FFDBAA;
}

.sf-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.sf-socials a {
  color: #00ff00;
  text-decoration: none;
  font-weight: 500;
}

.sf-footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .sf-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sf-footer-bottom {
    margin-top: 10px;
    flex-direction: row;
    justify-content: center;
  }

  .sf-socials {
    order: 2;
  }

  .sf-join {
    order: 1;
  }

  .sf-footer-bottom {
    order: 3;
  }
	




.ea-standard {
    width: 100% !important;
}


    .sf-footer .sf-logo svg {
        height: 16px;
        margin-bottom: 14px;
    }
}


.calendly-inline-widget {
	min-width:500px;
	height:700px;
	margin-left: 0px;
}

@media (max-width: 768px) {
.calendly-inline-widget {
	min-width:500px;
	height:950px;
	margin-left: -120px;
}}


/* نموذج الانضمام */
.sf-join-form {
  margin: 10px auto;
}

.sf-join-form label {
  display: block;
		font-style: italic;
  font-weight: bold;
}

.sf-join-form input,
.sf-join-form textarea,
.sf-join-form select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 2px solid #FFDBAA;
  background: #000;
  color: #FFDBAA;
  border-radius: 6px;
}

.sf-join-form input[type="checkbox"],
.sf-join-form input[type="radio"] {
  width: auto;
  margin-right: 6px;
}

.sf-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-list-item {
    display: block !important;
    margin: 0 0 0 1em;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.sf-btn {
	width: 200px;
	text-align: center;
	margin: 0 auto;
    border-radius: 999px !important;
    background: #00ff00 !important;
    color: black !important;
    font-style: italic !important;
    font-family: "minion-pro", serif !important;
    border: 2px solid #00ff00 !important;
    font-weight: 400 !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.sf-btn:hover {
    border-radius: 999px !important;
    background: #000000 !important;
    color: #00ff00 !important;
    font-style: italic !important;
    font-family: "minion-pro", serif !important;
    border: 2px solid #00ff00 !important;
    font-weight: 400 !important;
}

span.wpcf7-list-item-label {
    font-style: normal;
    font-weight: 400;
    font-family: 'basic-sans';
}