/* ==========================================================
   שיין מכון שטיפה — Shine Car Wash
   Based on Chop House template DNA (Foodfork family)
   RTL Hebrew adaptation
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&family=Assistant:wght@400;600;700&display=swap');

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	font-family: 'Assistant', Arial, sans-serif;
	font-size: 15px;
	color: #444;
	line-height: 1.7;
	background: #fff;
	direction: rtl;
	text-align: right;
}

a { color: #1565C0; text-decoration: none; }
a:hover { color: #0d47a1; }

img { max-width: 100%; height: auto; }

.upper { text-transform: uppercase; }
.serif { font-family: 'Rubik', Arial, sans-serif; font-weight: 700; }
.grey-text { color: #555; }
.mt-25 { margin-top: 25px; }
.p-0   { padding: 0; }
.ov-h  { overflow: hidden; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.txt-sm-center { text-align: center; }

/* === CONTAINER (Bootstrap-3 style) === */
.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
@media (min-width: 768px)  { .container { width: 750px; } }
@media (min-width: 992px)  { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }

.row { margin-right: -15px; margin-left: -15px; }
.row:after { content: ""; display: table; clear: both; }

[class*="col-"] { padding-left: 15px; padding-right: 15px; float: right; width: 100%; }


@media (min-width: 768px) {
	.col-sm-6  { width: 50%; }
	.col-sm-4  { width: 33.3333%; }
	.col-sm-3  { width: 25%; }
}
@media (min-width: 992px) {
	.col-md-3  { width: 25%; }
	.col-md-4  { width: 33.3333%; }
	.col-md-5  { width: 41.6667%; }
	.col-md-6  { width: 50%; }
	.col-md-7  { width: 58.3333%; }
	.col-md-8  { width: 66.6667%; }
	.col-md-12 { width: 100%; }
	.col-md-offset-2 { margin-right: 16.6667%; }
	.md-pull-right { float: right; }
}

/* === TOPBAR (announcement strip) === */
#top-strip {
	background: #1565C0;
	color: #fff;
	text-align: center;
	padding: 8px 15px;
	font-size: 13px;
	letter-spacing: 1px;
}
#top-strip a { color: #fff; text-decoration: underline; }
.gold-text { color: #FFD54F; font-weight: 700; }

/* === HEADER / NAV === */
#topnav {
	background: #111;
	padding: 18px 0 60px;
	position: sticky;
	top: 0;
	z-index: 999;
}
#topnav .logo { float: right; }
#topnav .logo a { display: flex; align-items: center; text-decoration: none; }
#topnav .logo svg { width: 48px; height: 48px; }
#topnav .logo-text {
	color: #fff;
	font-family: 'Rubik', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-right: 10px;
	line-height: 1.1;
}
#topnav .logo-text span { color: #1E88E5; font-size: 12px; display: block; font-weight: 400; letter-spacing: 2px; }

#navigation { float: left; }
.navigation-menu {
	list-style: none;
	margin: 12px 0 0 0;
	padding: 0;
}
.navigation-menu li {
	display: inline-block;
	margin: 0 8px;
}
.navigation-menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.5px;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	-webkit-transition: color .25s;
	transition: color .25s;
}
.navigation-menu li a:hover,
.navigation-menu li a.active { color: #1E88E5; }

/* hamburger */
.menu-extras { float: left; display: none; }
.navbar-toggle { cursor: pointer; padding: 6px; background: none; border: none; }
.navbar-toggle .lines span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* === BUTTONS === */
.btn {
	display: inline-block;
	padding: 11px 24px;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Rubik', sans-serif;
	border-radius: 3px;
	border: 2px solid transparent;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	text-decoration: none;
}
.btn-color {
	background: #1565C0;
	color: #fff !important;
	border-color: #1565C0;
}
.btn-color:hover {
	background: #0d47a1;
	border-color: #0d47a1;
	color: #fff;
}
.btn-light-out {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.btn-light-out:hover { background: #fff; color: #111; }
.btn-md  { padding: 13px 30px; font-size: 14px; }
.btn-lg  { padding: 15px 36px; font-size: 15px; }
.btn-full { min-width: 170px; text-align: center; }

/* === PARALLAX HERO === */
.parallax { position: relative; overflow: hidden; }
.parallax-bg {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 130%;
	background-size: cover;
	background-position: center center;
	z-index: 0;
}
.parallax-overlay {
	position: relative;
	background: rgba(0,0,0,0.58);
	z-index: 1;
	padding: 120px 0;
}
.parallax-overlay.dark { background: rgba(0,0,0,0.72); }
.parallax-overlay.blue { background: rgba(15,50,110,0.72); }

#home { min-height: 580px; width: 100%; }
#home .slide-wrap {
	position: relative;
	padding: 140px 0 110px;
	z-index: 2;
	text-align: center;
	color: #fff;
}
#home h1 {
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	margin: 18px 0 20px;
	font-family: 'Rubik', sans-serif;
	line-height: 1.15;
}
#home h5 {
	font-size: 13px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 0;
	text-transform: uppercase;
}
#home .rotator-item { display: none; }
#home .rotator-item.active { display: block; }

/* section divider */
.section-divider {
	width: 60px;
	border: 0;
	border-top: 3px solid #1565C0;
	margin: 18px auto;
	display: block;
}
.section-divider.right { margin-right: 0; margin-left: auto; }

/* === INTRO PANEL (light panel) === */
#intro-panel {
	background: #EFF3F8;
	padding: 80px 0;
}
#intro-panel .title h3 {
	font-family: 'Rubik', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #111;
	margin: 0 0 16px;
}
#intro-panel .title h5 {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1565C0;
	margin-bottom: 8px;
}
#intro-panel .intro-img img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* === SERVICES SECTION === */
#services-home {
	padding: 80px 0;
	background: #fff;
}
#services-home h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin: 0 0 10px;
}
.service-card {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 6px;
	padding: 30px 24px;
	margin-bottom: 24px;
	text-align: center;
	-webkit-transition: box-shadow .3s, -webkit-transform .3s;
	transition: box-shadow .3s, transform .3s;
	height: 100%;
}
.service-card:hover {
	box-shadow: 0 10px 36px rgba(21,101,192,0.13);
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
}
.service-card .svc-icon {
	width: 64px;
	height: 64px;
	background: #1565C0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}
.service-card .svc-icon i { color: #fff; font-size: 26px; }
.service-card h4 {
	font-family: 'Rubik', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111;
	margin: 0 0 10px;
}
.service-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* === FEATURES / FACTS STRIP (dark parallax) === */
#features {
	color: #fff;
}
#features .parallax-overlay {
	padding: 70px 0;
}
.feature-item {
	text-align: center;
	padding: 20px 10px;
	color: #fff;
}
.feature-item i {
	font-size: 42px;
	color: #FFD54F;
	margin-bottom: 14px;
	display: block;
}
.feature-item h4 {
	font-family: 'Rubik', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 6px;
	color: #fff;
}
.feature-item p {
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	margin: 0;
}

/* === PRICING === */
#pricing {
	padding: 80px 0;
	background: #F8F9FC;
}
#pricing h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin: 0 0 10px;
}
.pricing-card {
	background: #fff;
	border: 2px solid #e8edf3;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 24px;
	-webkit-transition: box-shadow .3s;
	transition: box-shadow .3s;
}
.pricing-card:hover { box-shadow: 0 10px 36px rgba(21,101,192,0.13); }
.pricing-card.featured { border-color: #1565C0; }
.pricing-card .card-head {
	background: #f4f6fb;
	padding: 24px 20px 16px;
	text-align: center;
}
.pricing-card.featured .card-head {
	background: #1565C0;
	color: #fff;
}
.pricing-card .card-head h3 {
	font-family: 'Rubik', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #111;
}
.pricing-card.featured .card-head h3 { color: #fff; }
.pricing-card .card-head .price {
	font-size: 38px;
	font-weight: 700;
	font-family: 'Rubik', sans-serif;
	color: #1565C0;
	line-height: 1;
}
.pricing-card.featured .card-head .price { color: #FFD54F; }
.pricing-card .card-head .price span { font-size: 16px; font-weight: 400; }
.pricing-card .card-body { padding: 20px; }
.pricing-card .card-body ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}
.pricing-card .card-body ul li {
	padding: 7px 0;
	border-bottom: 1px solid #f0f2f7;
	font-size: 14px;
	color: #555;
}
.pricing-card .card-body ul li:last-child { border-bottom: 0; }
.pricing-card .card-body ul li i { color: #1565C0; margin-left: 8px; }
.pricing-card .card-body .text-center { padding-top: 4px; }

/* badge */
.badge-pop {
	background: #E53935;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 8px;
	vertical-align: middle;
}

/* === REVIEWS (slider) === */
#reviews {
	padding: 80px 0 70px;
	background: #fff;
}
#reviews h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #111;
	text-align: center;
	margin: 0 0 50px;
}
.review-slider { position: relative; overflow: hidden; }
.review-track {
	display: flex;
	-webkit-transition: -webkit-transform .5s ease;
	transition: transform .5s ease;
}
.review-slide {
	min-width: 100%;
	padding: 0 60px;
	text-align: center;
}
.review-slide blockquote {
	border: 0;
	font-style: italic;
	color: #555;
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 20px;
	padding: 0 20px;
}
.review-slide .stars { color: #FFB300; font-size: 18px; margin-bottom: 12px; }
.review-slide footer {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #999;
	font-style: normal;
}
.review-nav { text-align: center; margin-top: 30px; }
.review-nav button {
	background: none;
	border: 2px solid #ddd;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 5px;
	font-size: 16px;
	color: #555;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.review-nav button:hover { border-color: #1565C0; color: #1565C0; }

/* === CTA DARK STRIP === */
#cta-strip {
	background: #111;
	color: #fff;
	padding: 80px 0;
}
#cta-strip .parallax-overlay {
	padding: 80px 0;
}
#cta-strip h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.2;
}
#cta-strip p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }

/* === PAGE TITLE (parallax banner for inner pages) === */
.page-title { position: relative; min-height: 280px; }
.page-title .title { color: #fff; padding: 0; }
.page-title .title.center { text-align: center; }
.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	font-family: 'Rubik', sans-serif;
	letter-spacing: 1px;
	margin: 0 0 12px;
	color: #fff;
}
.page-title h4 {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.6;
	color: rgba(255,255,255,0.85);
}
.page-title hr {
	width: 60px;
	border: 0;
	border-top: 2px solid #FFD54F;
	margin: 16px 0;
	display: inline-block;
}

/* === PAGE CONTENT SECTIONS === */
.page-section { padding: 70px 0; }
.page-section h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111;
	margin: 30px 0 14px;
}
.page-section h3 {
	font-family: 'Rubik', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #111;
	margin: 24px 0 10px;
}
.page-section p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.page-section ul { color: #555; line-height: 1.9; padding-right: 20px; }

/* === FOOTER WIDGETS === */
#footer-widgets {
	background: #F7F7F7;
	padding: 60px 0 30px;
	color: #777;
	font-size: 14px;
}
#footer-widgets .widget h6 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #333;
	margin: 0 0 18px;
}
#footer-widgets ul { list-style: none; margin: 0; padding: 0; }
#footer-widgets ul li { margin-bottom: 10px; }
#footer-widgets ul li a { color: #777; text-decoration: none; }
#footer-widgets ul li a:hover { color: #1565C0; }
#footer-widgets .widget p { color: #777; font-size: 14px; line-height: 1.7; }
#footer-widgets .widget i { color: #1565C0; margin-left: 8px; width: 18px; }

/* go-top */
.go-top { position: absolute; left: 30px; top: -20px; }
.go-top a {
	display: inline-block;
	width: 40px; height: 40px;
	background: #1565C0;
	color: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 3px;
	font-size: 18px;
}
.go-top a:hover { background: #0d47a1; }

/* footer copyright strip */
#footer {
	background: #fff;
	padding: 22px 0;
	border-top: 1px solid #e5e5e5;
	font-size: 12px;
	color: #999;
	position: relative;
}
#footer .foot-links { list-style: none; margin: 0; padding: 0; text-align: left; }
#footer .foot-links li { display: inline-block; margin: 0 8px; }
#footer .foot-links li a { color: #666; font-size: 12px; }
#footer .foot-links li a:hover { color: #1565C0; }
.footer-social ul { list-style: none; margin: 0; padding: 0; text-align: right; }
.footer-social ul li { display: inline-block; margin-right: 10px; }
.footer-social ul li a { color: #777; font-size: 17px; }
.footer-social ul li a:hover { color: #1565C0; }

/* === CONTACT FORM === */
.contact-form { background: #fff; border-radius: 6px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #333; font-size: 14px; }
.form-control {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #dce3ee;
	border-radius: 4px;
	font-size: 14px;
	font-family: 'Assistant', sans-serif;
	color: #333;
	background: #fff;
	-webkit-transition: border-color .3s;
	transition: border-color .3s;
	direction: rtl;
}
.form-control:focus { outline: none; border-color: #1565C0; }
textarea.form-control { resize: vertical; min-height: 120px; }
.required-note { font-size: 12px; color: #999; margin-top: -10px; margin-bottom: 14px; }

/* info card */
.info-card { padding: 30px 0; }
.info-card .info-item { display: flex; align-items: flex-start; margin-bottom: 22px; }
.info-card .info-item i { font-size: 20px; color: #1565C0; margin-left: 14px; margin-top: 2px; flex-shrink: 0; }
.info-card .info-item h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px; color: #333; }
.info-card .info-item p { margin: 0; color: #555; font-size: 14px; }

/* === GDPR COOKIE BANNER === */
#cookie-banner {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	background: #111;
	color: #fff;
	padding: 18px 20px;
	z-index: 9999;
	display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
	max-width: 1170px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
#cookie-banner p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.85); flex: 1; }
#cookie-banner a { color: #FFD54F; }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
	background: #1565C0;
	color: #fff;
	border: none;
	padding: 9px 20px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 3px;
	cursor: pointer;
	font-family: 'Rubik', sans-serif;
}
.btn-cookie-decline {
	background: transparent;
	color: rgba(255,255,255,0.6);
	border: 1px solid rgba(255,255,255,0.3);
	padding: 9px 20px;
	font-size: 13px;
	border-radius: 3px;
	cursor: pointer;
	font-family: 'Rubik', sans-serif;
}

/* === UTILITY === */
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h5 {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1565C0;
	margin-bottom: 8px;
}
.section-heading h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin: 0 0 12px;
}
.section-heading p { color: #666; font-size: 15px; max-width: 580px; margin: 0 auto; }

/* === ABOUT PAGE === */
.about-img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-text h2 { font-family: 'Rubik', sans-serif; font-size: 30px; font-weight: 700; color: #111; margin: 0 0 16px; }
.about-text p { color: #555; line-height: 1.85; margin-bottom: 16px; }
.about-text ul { color: #555; padding-right: 20px; line-height: 1.9; }
.about-text ul li { margin-bottom: 8px; }

/* team member card */
.team-card {
	text-align: center;
	margin-bottom: 30px;
}
.team-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 14px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.team-card h4 { font-family: 'Rubik', sans-serif; font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.team-card p { font-size: 13px; color: #888; margin: 0; }

/* stats strip */
.stats-strip { background: #1565C0; padding: 50px 0; color: #fff; }
.stat-item { text-align: center; padding: 10px; }
.stat-item .stat-num { font-family: 'Rubik', sans-serif; font-size: 46px; font-weight: 700; line-height: 1; color: #FFD54F; }
.stat-item .stat-label { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; color: rgba(255,255,255,0.85); }

/* === MEDIA QUERIES === */
@media (max-width: 991px) {
	#home h1 { font-size: 38px; }
	.page-title h1 { font-size: 32px; }
	.navigation-menu li { margin: 0 5px; }
	.menu-extras { display: block; }
	#navigation { display: none; float: none; clear: both; }
	#navigation.open { display: block; }
	.navigation-menu li { display: block; margin: 10px 15px; }
	.navigation-menu { margin-top: 8px; }
	#topnav .logo { margin-bottom: 0; }
	.review-slide { padding: 0 20px; }
	.contact-form { padding: 30px 20px; }
}
@media (max-width: 768px) {
	#home h1 { font-size: 28px; }
	.page-title h1 { font-size: 26px; }
	.page-title .title { text-align: center; }
	.footer-social ul { text-align: center; margin-top: 12px; }
	.go-top { left: 15px; }
	#footer .foot-links { text-align: center; margin-top: 8px; }
	.section-heading h2 { font-size: 28px; }
	.pricing-card { margin-bottom: 16px; }
	.stat-item .stat-num { font-size: 36px; }
}
@media (max-width: 480px) {
	.btn-md { padding: 11px 20px; font-size: 13px; }
	.btn-full { min-width: 0; display: block; margin: 5px 0; }
	.review-slide blockquote { font-size: 15px; }
	#cookie-banner .cookie-inner { flex-direction: column; }
	.pricing-card .card-head .price { font-size: 30px; }
}
