/* Import Arabic Font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
    font-family: "Zain", sans-serif;	
	direction: rtl;
	text-align: right;
	background: #f5f5f5;
	color: #333;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}
@media (max-width: 768px) {
	.section {
		padding: 3rem 1rem;
	}
	.grid {
		grid-template-columns: 1fr;
	}
	.card img {
		height: 200px;
	}
	.card {
		min-height: 350px;
	}
}
/* Sections */
.section {
	padding: 5rem 2rem;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #fff;
	margin-bottom: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
/* navbar */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 40px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
    z-index: 9999;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px);
    padding: 10px 40px;
}

.header-container {
    display: flex;
	justify-content: space-between;
	align-items: center;
    max-width: 1500px;
    margin: auto;
}

.logo {
	grid-column: 3;
	justify-self: end;
}
.logo img {
    height: 75px;
    width: auto;
    transition: 0.3s ease;
}

.navbar-menu {
	grid-column: 2;
	justify-self: center;
}
.main-header.scrolled .logo img {
    height: 68px;
}

.navbar-menu ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.navbar-menu a {
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 6px 10px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.navbar-menu a:hover {
    color: #ffe274;
    text-shadow: 0 0 8px rgba(255, 226, 116, 0.6);
}

.has-dropdown {
    position: relative;
    text-align: center;
}
.has-dropdown .dropdown {
	right: 50%;
	transform: translateX(50%);
}
.dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(0, 0, 0, 0.60);
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 180px;

    /* Animation */
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: block !important;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(100px);
    pointer-events: auto;
    display: block;
}

/* Dropdown links */
.dropdown li a {
    padding: 10px 12px;
    display: block;
    color: white;
    border-radius: 6px;
    transition: background 0.25s ease;
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.18);
}
.has-dropdown:hover > a i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Default smooth transition */
.has-dropdown > a i {
    transition: transform 0.3s ease;
}

/* Rotate arrow when mobile dropdown is opened */
.has-dropdown.open > a i {
    transform: rotate(180deg);
}

/* ========== MOBILE MENU ========== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 90px;
        right: 20px;
        width: 230px;
        background: rgba(0, 0, 0, 0.92);
        padding: 22px;
        border-radius: 14px;
        display: none;

        /* Animation */
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .navbar-menu.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile dropdown */
    .dropdown {
        position: static;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.10);
        margin-top: 8px;
        border-radius: 10px;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        display: block !important;
    }

    .has-dropdown.open .dropdown {
        opacity: 1;
        max-height: 350px;
    }
    .dropdown li {
    display: block;
    width: 100%;
}

.dropdown li a {
    display: block;
    width: 100%;
    text-align: right;
}
.has-dropdown .dropdown {
	right: 0;
	transform: translateX(0);
}
.has-dropdown:hover .dropdown {
    transform: translateX(0);
}
}

/*   END NAVBAR   */


/* Footer */
.footer {
	background: #333;
	color: #fff;
	padding: 2rem;
	text-align: center;
}

.footer-links {
	text-align: center;
	margin-bottom: 20px;
}
.footer-links ul {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.footer-links a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	transition: 0.3s;
}
.footer-links a:hover {
	color: #ccc;
}
.footer-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px auto 10px;
	flex-wrap: wrap;
}
.footer-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	color: white;
	transition: 0.3s;
}
.footer-btn i {
	font-size: 20px;
}
.footer-btn.call {
	background: #222;
}
.footer-btn.call:hover {
	background: #000;
}
.footer-btn.tiktok {
	background: #000000;
}
.footer-btn.tiktok:hover {
	background: #00000050;
}

.footer-btn.facebook {
	background: #0054ff;
}
.footer-btn.facebook:hover {
	background: #003fcc;
}
.site-footer {
	background: #111;
	padding: 40px 0 20px;
	color: #fff;
	text-align: center;
}
.footer-bottom p {
	opacity: 0.7;
	margin-top: 10px;
}
/* End Footer */

/* Home Page */

.hero {
	background: url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
	background-attachment: fixed;
	position: relative;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.hero .content {
	position: relative;
	justify-content: center;
	align-items: center;
	z-index: 2;
	transform: translateY(50px);
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.5s forwards;
	color: white;
	text-align: center !important;
}
@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.tvr-about-section {
	padding: 100px 0;
	direction: rtl;
	background: #fff;
}

.tvr-container {
	max-width: 1300px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}
.tvr-title {
	font-size: 40px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 10px;
	color: #222;
	line-height: 1.5;
}
.tvr-divider {
	width: 80px;
	height: 3px;
	background: #00a884;
	margin: 20px auto 50px;
	border-radius: 3px;
}

.tvr-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	flex-wrap: wrap;
}
.tvr-text-block {
	flex: 1;
	min-width: 420px;
}
.tvr-subtitle {
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #444;
}
.tvr-subtitle span {
	font-weight: 800;
}
.tvr-description {
	font-size: 18px;
	color: #555;
	line-height: 1.9;
	margin-bottom: 20px;
}
.tvr-button {
	display: inline-block;
	background: #111;
	padding: 14px 32px;
	color: white !important;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s ease;
	box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}
.tvr-button:hover {
	background: #000;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.32);
}
.tvr-image-block {
	flex: 1;
	min-width: 420px;
	text-align: center;
}
.tvr-image-block img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
    .tvr-content {
        flex-direction: column-reverse !important;
        text-align: center;
        gap: 40px;
    }
    .tvr-title {
		font-size: 32px;
	}
    .tvr-text-block,
    .tvr-image-block {
        min-width: 100% !important;
    }

    .tvr-text-block p {
        text-align: center !important;
    }

    .tvr-button {
        display: inline-block;
        margin: 20px auto 0;
    }

    .tvr-image-block img {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .tvr-title {
        font-size: 28px;
    }

    .tvr-subtitle {
        font-size: 20px;
    }

    .tvr-description {
        font-size: 16px;
        line-height: 2;
    }

    .tvr-image-block img {
        max-width: 100%;
    }
}


/* Slider */

.tv-slider {
	padding: 3rem 2rem;
	text-align: center;
}
.tv-slider-wrapper {
	position: relative;
	max-width: 1100px;
	margin: auto;
	overflow: hidden;
	border-radius: 15px;
}
.tv-slider-track {
	display: flex;
	transition: transform 0.7s cubic-bezier(.25,.8,.25,1);
}
.tv-slider h2 {
	text-align: center !important;
	width: 100%;
	font-size: 3rem;
}
.tv-slide {
	width: 100%;
	height: 450px;
	flex-shrink: 0;
}
.tv-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tv-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(8px);
	border: none;
	padding: 14px;
	border-radius: 50%;
	cursor: pointer;
	color: white;
	font-size: 20px;
	z-index: 20;
}
.tv-prev {
	right: 15px;
}
.tv-next {
	left: 15px;
}
.tv-btn:hover {
	background: rgba(255,255,255,0.2);
}
.tv-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 1rem;
	padding: 5px;
}
.tv-dots span {
	width: 11px;
	height: 11px;
	background: #bbb;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}
.tv-dots .active {
	background: #007bff;
	transform: scale(1.3);
}
@media (max-width:768px) {
	.tv-slide {
		height: 250px;
	}
}
/* End Home Page */
/* Ready Products Page */
.ready-page {
	direction: rtl;
	font-family: "Tajawal", sans-serif;
	padding: 10rem 20px 20px 20px;
	background: #fafafa;
}
.ready-header {
	text-align: center;
	margin-bottom: 40px;
}
.ready-main-title {
	font-size: 34px;
	font-weight: 700;
	color: #222;
}
.ready-divider {
	width: 80px;
	height: 3px;
	background: #000;
	margin: 10px auto;
	border-radius: 4px;
}
.ready-intro {
	max-width: 650px;
	margin: 0 auto 60px;
	text-align: center;
}
.ready-intro-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
}
.ready-intro-text {
	font-size: 17px;
	line-height: 1.9;
	margin: 15px 0;
	color: #444;
}
.ready-main-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #000;
	color: #fff;
	margin-top: 20px;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.3s;
}
.ready-main-btn:hover {
	background: #333;
}
.ready-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 40px;
}
.ready-card {
	background: #fff;
	padding: 25px;
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	text-align: center;
	transition: transform 0.25s ease;
}
.ready-card:hover {
	transform: translateY(-6px);
}
.ready-img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
}
.ready-card-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}
.ready-card-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 25px;
}
.ready-btn {
	display: inline-block;
	padding: 10px 26px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	transition: 0.3s;
}
.ready-btn:hover {
	background: #333;
}
/* Ready Products Page End*/


/* === VEHICLE RENEW PAGE === */
.renew-wrapper {
	direction: rtl;
	padding: 10rem 0;
	display: flex;
	justify-content: center;
}
.renew-section {
	width: 90%;
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 60px;
}
.renew-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.renew-content {
	text-align: center;
}
.renew-title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 25px;
}
.renew-paragraph {
	font-size: 19px;
	line-height: 2;
	color: #444;
	margin-bottom: 30px;
}
.renew-subtitle {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.renew-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}
.renew-list li {
	font-size: 18px;
	color: #444;
	margin-bottom: 12px;
}
.renew-btn {
	display: inline-block;
	background: #000;
	padding: 14px 40px;
	color: #fff;
	font-size: 18px;
	border-radius: 12px;
	transition: .3s;
	font-weight: bold;
}
.renew-btn:hover {
	background: #333;
	transform: translateY(-2px);
}
@media (max-width: 992px) {
	.renew-section {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.renew-content {
		text-align: center;
	}
}
/* === VEHICLE RENEW PAGE End === */

/* === ENERGY SOLUTIONS PAGE === */
.energy-wrapper {
	direction: rtl;
	padding: 10rem 0;
	display: flex;
	justify-content: center;
	height: 60rem;
}
.energy-section {
	width: 92%;
	max-width: 1500px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	gap: 80px;
}
.energy-image img {
	width: 100%;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.energy-content {
	text-align: center;
	padding: 2rem;
}
.energy-title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 25px;
}
.energy-paragraph {
	font-size: 19px;
	line-height: 2.1;
	color: #474747;
	margin-bottom: 40px;
}
.energy-btn {
	display: inline-block;
	background: #000;
	padding: 15px 45px;
	color: #fff;
	font-size: 18px;
	border-radius: 12px;
	font-weight: 700;
	transition: 0.3s;
}
.energy-btn:hover {
	background: #333;
	transform: translateY(-2px);
}
@media (max-width: 992px) {
	.energy-section {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}
	.energy-content {
		text-align: center;
	}
}
/* === ENERGY SOLUTIONS PAGE End === */

/* ===========================MAINTENANCE PAGE=========================== */
.maintenance-wrapper {
	padding: 10rem 0;
	direction: rtl;
	display: flex;
	justify-content: center;
}
.maintenance-section {
	width: 90%;
	max-width: 1500px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-start;
	gap: 70px;
	margin: auto !important;
}
.maintenance-image img {
	width: 90%;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.maintenance-content {
	text-align: center;
}
.maintenance-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 15px;
}
.maintenance-subtitle {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.maintenance-paragraph {
	font-size: 19px;
	line-height: 2;
	color: #444;
	margin-bottom: 40px;
}
.maintenance-services-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.maintenance-list {
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}
.maintenance-list li {
	font-size: 18px;
	color: #333;
	margin-bottom: 12px;
}
.maintenance-contact-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}
.maintenance-contact-text {
	font-size: 18px;
	margin-bottom: 30px;
	color: #555;
}
.maintenance-btn {
	background: #000;
	color: #fff;
	padding: 15px 45px;
	border-radius: 10px;
	font-size: 18px;
	display: inline-block;
	font-weight: 700;
	transition: 0.3s;
}
.maintenance-btn:hover {
	background: #333;
	transform: translateY(-3px);
}
@media (max-width: 992px) {
	.maintenance-section {
		grid-template-columns: 1fr;
	}
	.maintenance-content {
		text-align: center;
	}
	.process-page {
		direction: rtl;
		font-family: "Tajawal", sans-serif;
		padding: 50px 0 100px;
		color: #222;
	}
	.process-header {
		text-align: center;
		margin-bottom: 60px;
	}
	.process-header h1 {
		font-size: 42px;
		font-weight: 600;
		margin-bottom: 10px;
		color: #444;
	}
	.process-header p {
		color: #666;
		font-size: 16px;
		margin-top: 10px;
	}
	.process-header a {
		color: #333;
		text-decoration: underline;
		font-weight: 500;
	}
	.steps-container {
		width: 85%;
		max-width: 950px;
		margin: auto;
	}
	.step-box {
		border-bottom: 1px solid #e2e2e2;
		padding: 12px 0;
	}
	.step-toggle {
		background: none;
		border: none;
		width: 100%;
		display: flex;
		align-items: center;
		cursor: pointer;
		padding: 0;
		padding: 15px 5px;
	}
	.step-toggle .num {
		font-weight: 600;
		font-size: 18px;
		margin-left: 14px;
	}
	.step-toggle .title {
		flex: 1;
		font-size: 20px;
		font-weight: 600;
		color: #333;
	}
	.step-toggle .arrow {
		font-size: 18px;
		transition: 0.3s;
		color: #666;
	}
	.step-content {
		display: none;
		padding: 10px 5px 20px;
		font-size: 17px;
		color: #555;
		line-height: 2;
	}
	.step-box.active .step-content {
		display: block;
	}
	.step-box.active .arrow {
		transform: rotate(180deg);
	}
	.process-cta {
		text-align: center;
		margin-top: 60px;
	}
	.cta-button {
		background: #000;
		color: #fff;
		padding: 16px 45px;
		border-radius: 8px;
		text-decoration: none;
		font-size: 18px;
		font-weight: 600;
	}
}
/* ===========================MAINTENANCE PAGE End=========================== */
/* ===========================Process PAGE=========================== */
.process-page {
	direction: rtl;
	font-family: "Tajawal", sans-serif;
	padding-bottom: 60px;
	padding-top: 10rem;
}
.process-header {
	text-align: center;
	padding: 70px 20px 40px;
}
.process-header h1 {
	font-size: 42px;
	font-weight: 700;
	color: #444;
	margin-bottom: 10px;
}
.process-header p {
	font-size: 18px;
	color: #666;
	margin-top: 5px;
}
.process-header a {
	color: #000;
	font-weight: 600;
	border-bottom: 1px dotted #333;
	text-decoration: none;
}
.process-steps {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}
.step-box {
	border-bottom: 1px solid #e4e4e4;
	padding: 8px 0;
	transition: background 0.2s ease-out;
}
.step-toggle {
	background: none;
	border: none;
	width: 100%;
	display: flex;
	align-items: center;
	text-align: right;
	cursor: pointer;
	padding: 20px 5px;
	transition: background 0.25s ease;
}
.step-toggle:hover {
	background: #fafafa;
}
.step-toggle .num {
	font-weight: 700;
	font-size: 20px;
	margin-left: 16px;
}
.step-toggle .title {
	flex: 1;
	font-size: 22px;
	font-weight: 700;
	color: #333;
}
.step-toggle .arrow {
	transition: transform 0.35s ease;
	font-size: 18px;
	color: #555;
}
.step-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 5px;
	font-size: 18px;
	color: #555;
	line-height: 2;
	transition:max-height 0.5s ease,opacity 0.4s ease,padding 0.4s ease;
}
.step-box.active .step-content {
	max-height: 2000px;
	opacity: 1;
	padding: 12px 5px 25px;
}
.step-box.active .arrow {
	transform: rotate(180deg);
}
.process-cta {
	text-align: center;
	margin-top: 60px;
}
.cta-button {
	background: #000;
	color: #fff;
	padding: 16px 40px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 6px;
	display: inline-block;
	text-decoration: none;
	transition: background 0.25s ease;
}
.cta-button:hover {
	background: #333;
}
@media (max-width: 600px) {
	.process-header h1 {
		font-size: 32px;
	}
	.step-toggle .title {
		font-size: 20px;
	}
	.step-toggle .num {
		font-size: 18px;
	}
	.process-header p {
		font-size: 16px;
	}
}
.cta-button {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 16px 40px;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-button:hover {
	transform: scale(1.06);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.cta-button:active {
	transform: scale(0.94);
	box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}
/* ===========================Process PAGE=========================== */

/*===========================Private Products Page=========================== */
.private-wrapper {
	padding-top: 9rem;
	margin: auto;
	padding-right: 40px;
	display: flex;
	align-items: center;
	gap: 70px;
	direction: rtl;
	text-align: center;
}
.private-image {
	flex: 1.1;
}
.private-image img {
	width: 100%;
	height: 100%;
	border-radius: 22px;
	object-fit: cover;
}
.private-text {
	flex: 1;
}
.private-text h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 25px;
	color: #111;
}
.private-text p {
	font-size: 20px;
	line-height: 2.1;
	color: #444;
	margin-bottom: 30px;
}
.private-btn {
	display: inline-block;
	padding: 15px 45px;
	background: #000;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	border-radius: 14px;
	border: 2px solid #000;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	transition: .25s ease;
}
.private-btn:hover {
	background: #222;
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
@media(max-width: 992px) {
	.private-wrapper {
		flex-direction: column-reverse;
		padding-top: 120px;
		text-align: center;
		gap: 40px;
        padding-right: 0;
	}
	.private-text h2 {
		font-size: 32px;
	}
	.private-image img {
		height: auto;
	}
	.private-btn {
		width: 70%;
		font-size: 18px;
		padding: 14px 20px;
	}
}
/*===========================Private Products Page End=========================== */
/*===========================About Page=========================== */
.about-page {
	direction: rtl;
	font-family: "Tajawal", sans-serif;
	color: #444;
	line-height: 1.9;
	padding-top: 5rem;
}
.about-page h1,.about-page h2,.about-page h3 {
	text-align: center;
	margin-bottom: 20px;
}
.about-page h1 {
	font-size: 3rem;
	margin-bottom: 10px;
}
.about-page h2 {
	font-size: 2rem;
}
.about-page h3 {
	font-size: 1.5rem;
}
.about-page .title-underline {
	width: 60px;
	height: 3px;
	background: #d0d0d0;
	margin: 10px auto 30px;
	border-radius: 3px;
}
.about-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 60px auto;
	gap: 60px;
}
.about-section img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.about-section .text {
	flex: 1;
	font-size: 20px;
}
.about-section.reverse {
	flex-direction: row-reverse;
}
.commitment-section {
	background: #f5f5f5;
	padding: 80px 20px;
	margin-top: 80px;
}
.commitment-section h2 {
	font-size: 40px;
}
.commitment-columns {
	max-width: 1200px;
	margin: 50px auto 0;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	justify-content: center;
	gap: 60px;
	text-align: center;
}
.commitment-columns h3 {
	font-size: 28px;
	margin-bottom: 15px;
}
.commitment-columns p {
	font-size: 18px;
	line-height: 1.9;
}
.commitment-columns > div {
	padding: 0 20px;
	border-left: 1px solid #ddd;
}
.commitment-columns > div:first-child {
	border-left: none;
}
@media (max-width: 900px) {
	.about-section {
		flex-direction: column !important;
		text-align: center;
	}
	.commitment-columns {
		grid-template-columns: 1fr;
		border: none;
		gap: 40px;
	}
	.commitment-columns > div {
		border-left: none;
	}
}
.about-section-title {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	margin: 70px 0 40px;
	color: #333;
	position: relative;
}
.about-section-title::after {
	content: "";
	width: 60px;
	height: 3px;
	background: #cfcfcf;
	margin: 15px auto 0;
	display: block;
	border-radius: 3px;
}
.about-block {
	max-width: 1350px;
	margin: 70px auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	direction: rtl;
}
.about-block.img-left {
	flex-direction: row-reverse;
}
.about-block.img-right {
	flex-direction: row;
}
.about-image {
	flex: 1;
}
.about-image img {
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}
.about-text {
	flex: 1;
	direction: rtl;
	text-align: right;
}
.about-text h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 18px;
	color: #333;
}
.about-text p {
	font-size: 20px;
	line-height: 1.9;
	color: #555;
	font-weight: 400;
}
@media (max-width: 992px) {
	.about-block {
		flex-direction: column !important;
		text-align: center;
	}
	.about-text {
		text-align: center;
	}
	.about-image img {
		width: 100%;
	}
}
/*===========================About Page End=========================== */
/*===========================services Page=========================== */
.card {
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	transform-style: preserve-3d;
	overflow: hidden;
	display: flex;
    grid-template-columns: repeat(3, 1fr);
	flex-direction: column;
	align-items: center;
	/* Centers content horizontally */
	justify-content: center;
	/* Centers content vertically */
	text-align: center;
	border: 1px solid #e9ecef;
	min-height: 400px;
	/* Ensures consistent height for centering */
}
.card:hover {
	transform: translateY(-10px) rotateX(2deg);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1rem;
	loading: lazy;
}
.card h3 {
	margin-bottom: 0.5rem;
	color: #007bff;
}
.card p {
	margin-bottom: 1rem;
	flex-grow: 1;
	color: #666;
}
.card .cta-btn {
	margin-top: 1rem;
	width: 100%;
}

.cta-btn {
	background: black;
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
	border: 2px solid white;
	margin: 5px;
}
.cta-btn:hover {
	background: #DDD;
	color: #000;
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
/*===========================services Page End=========================== */
/*===========================Contact Page=========================== */
.contact-form {
	max-width: 600px;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.contact-form input, .contact-form textarea {
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	color: #333;
	font-family: 'Cairo', sans-serif;
}
.contact-form label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.contact-clean-page {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 120px;
    background: url('https://topvision.publiclabs.net/wp-content/uploads/2025/12/rsw_1920m.jpeg')
        center / cover no-repeat;
    color: white;
    position: relative;
    z-index: 1;
}
.contact-box {
    background: rgba(255, 255, 255, 0.96);
    color: #333;
    max-width: 700px;
    margin: auto;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.contact-title {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-desc {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.contact-btn {
    display: block;
    width: 60%;
    margin: 12px auto;
    padding: 14px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #1da851;
}
.open-form-btn {
    background: black;
    color: white;
}

.open-form-btn:hover {
    background: #333;
}
.company-name {
    font-size: 22px;
    margin-top: 25px;
}

.phone-number,
.hours {
    color: #555;
    margin: 8px 0;
}
.form-modal {
    display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(6px);
    z-index: 999999; 
    justify-content: center;
    align-items: center;
}

.form-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    animation: popupFade 0.35s ease;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-btn {
        width: 85%;
    }

    .form-modal-content {
        padding: 25px;
    }
}
.form-modal.active {
    display: flex;
}
.hours-box {
    margin-top: 25px;
    color: #444;
}

.hours-title {
    font-size: 20px;
    margin-bottom: 6px;
}

.today-status {
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.today-status .arrow {
    transition: transform 0.3s ease;
}
.weekly-hours {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;

    /* Animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.hours-box.open .weekly-hours {
    max-height: 500px; /* big enough for all days */
    opacity: 1;
    transform: translateY(0);
}

.today-status .arrow {
    transition: transform 0.6s ease;
}

.hours-box.open .arrow {
    transform: rotate(180deg);
}

/*===========================Contact Page End=========================== */
/*===========================Booking Page=========================== */

.booking-header {
	text-align: center;
	padding: 10rem 20px 20px;
}
.booking-header h1 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.7;
	color: #222;
	max-width: 800px;
	margin: 0 auto 25px;
}
.booking-tabs {
	display: flex;
	justify-content: center;
	gap: 30px;
	font-size: 18px;
}
.booking-tabs a {
	cursor: pointer;
	color: #777;
	font-weight: 600;
	transition: 0.3s;
}
.booking-tabs a.active {
	color: #000;
	border-bottom: 2px solid #000;
}
.booking-grid {
	width: 92%;
	max-width: 1300px;
	margin: 50px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}
.booking-card {
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 25px;
	background: #fff;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	transition: 0.4s;
}
.booking-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.img-box {
	overflow: hidden;
}
.img-box img {
	width: 100%;
	transition: 0.45s ease;
    height: 300px;
}
.booking-card:hover img {
	transform: scale(1.08);
}
.booking-card h3 {
	padding: 15px 20px 5px;
	font-size: 20px;
	font-weight: 700;
}
.booking-card .meta {
	padding: 0 20px 10px;
	color: #666;
	font-size: 15px;
}
.book-btn {
	margin-right: 20px;
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 10px 25px;
	border-radius: 6px;
    font-size: 1.2rem;
	font-weight: 600;
	transition: 0.3s ease;
}
.book-btn:hover {
	background: #333;
	transform: scale(1.05);
}
.book-btn:active {
	transform: scale(0.93);
}
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease forwards;
}
.fade-up:nth-child(2) {
	animation-delay: 0.15s;
}
.fade-up:nth-child(3) {
	animation-delay: 0.30s;
}
.fade-up:nth-child(4) {
	animation-delay: 0.45s;
}
@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*===========================Booking Page End=========================== */
/* ===============================
   Forminator – Maintenance Request
================================ */

/* ===============================
   Maintenance Request Form
================================ */

.forminator-ui.forminator-custom-form {
    max-width: 1100px;
    margin: 80px auto;
    padding: 50px 60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    direction: rtl;
    width: 100%;
}
.forminator-custom-form-417{
    padding: 15px !important;
}
/* Force center inside page */
.page .forminator-ui {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Rows layout */
.forminator-row {
    width: 100%;
    margin-bottom: 25px;
}

/* Two columns desktop */
@media (min-width: 900px) {
    .forminator-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Full width rows (textarea, submit) */
    .forminator-row.forminator-row-last,
    .forminator-row:last-child {
        grid-template-columns: 1fr;
    }
}
/* Labels */
.forminator-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

/* Inputs */
.forminator-input,
.forminator-textarea,
.forminator-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 15px;
}

.forminator-input:focus,
.forminator-textarea:focus {
    border-color: #000;
    background: #fff;
}

/* Textarea */
.forminator-textarea {
    min-height: 150px;
}

/* Submit button */
.forminator-button-submit {
    margin-top: 20px;
    background: #000 !important;
    color: #fff !important;
    padding: 15px 45px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 700;
    border: none !important;
    cursor: pointer;
    transition: 0.3s ease;
}

.forminator-button-submit:hover {
    background: #222 !important;
    transform: translateY(-2px);
}

/* maintance request end */

/* ===============================
   TVR BOOKING – CLEAN UI + BLACK BUTTONS
   =============================== */

/* Layout */
.booking-layout {
    display: flex;
    gap: 70px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    align-items: flex-start;
    direction: rtl;
    padding-top: 10rem;
}

.booking-info {
    width: 40%;
    text-align: right;
}

.booking-widget {
    width: 60%;
}

/* ===============================
   Info Section
   =============================== */

.booking-info h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.booking-meta {
    color: #888;
    font-size: 15px;
    margin-bottom: 20px;
}

.booking-info img {
    width: 100%;
    border-radius: 14px;
}

.booking-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ===============================
   Booking Card
   =============================== */

.booking-widget .booking-package {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===============================
   Calendar
   =============================== */

.booking-widget table {
    border-collapse: separate;
    border-spacing: 6px;
}

.booking-widget td,
.booking-widget th {
    padding: 10px !important;
    text-align: center;
}

.booking-widget td.available {
    border-radius: 50%;
    transition: 0.25s;
}

.booking-widget td.available:hover {
    background: #000 !important;
    color: #fff !important;
}

/* ===============================
   BLACK BUTTONS (IMPORTANT PART)
   =============================== */

.booking-widget button,
.booking-widget input[type="submit"],
.booking-widget .btn {
    background: #000 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px 26px !important;
    font-size: 15px;
    font-weight: 600;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.booking-widget button:hover,
.booking-widget input[type="submit"]:hover {
    background: #222 !important;
    transform: translateY(-1px);
}

/* Return button */
.booking-widget .return {
    background: #f1f1f1 !important;
    color: #111 !important;
}

.booking-widget .return:hover {
    background: #ddd !important;
}

/* ===============================
   Inputs
   =============================== */

.booking-widget input,
.booking-widget select {
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    padding: 10px 12px !important;
}

/* ===============================
   Mobile
   =============================== */
.return_form_button , .book_now_button{
    transition: 0.3s !important;
}
@media (max-width: 900px) {
    .booking-layout {
        flex-direction: column;
    }

    .booking-info,
    .booking-widget {
        width: 100%;
    }
}
.booking-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.booking-share .share-label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.booking-share .share-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

.booking-share .share-icon:hover {
    background: #333;
}
