:root {
    --aradi-green:#0D352F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #212121;
}

/* Header Styles */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.home-header.transparent {
    background-color: transparent;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon-white {
    width: 20px;
    height: 20px;
    stroke: white;
}
.aradi_header .nav-link:not(.active) {
	color: #737373;
}
.aradi_header .nav-link.active{
	background: transparent;
}
.logo-icon-green {
    width: 24px;
    height: 24px;
}

.logo-text-arabic {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212121;
}

.logo-text-english {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212121;
}

.logo-text-white {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.logo-text-green {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d352f;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #212121;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #212121;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.notification-badge {
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 1001;
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* RTL support for dropdown menu */
html[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item span {
    flex: 1;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.dropdown-item.logout {
    color: #dc2626;
}

.dropdown-item.logout:hover {
    background-color: #fee2e2;
    color: #991b1b;
}

.dropdown-item svg {
    flex-shrink: 0;
    color: #6b7280;
    transition: color 0.2s ease;
}

.dropdown-item:hover svg {
    color: #374151;
}

.dropdown-item.logout svg {
    color: #dc2626;
}

.dropdown-item.logout:hover svg {
    color: #991b1b;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

.dropdown-form {
    margin: 0;
    padding: 0;
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 930px;
    overflow: hidden;
}
.hero-section.aradi_hero {
	margin-top: -121px;
	border-radius: 30px;
}
.page-content:has(.aradi_hero) {
	padding: 0 10px;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-align: center;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	bottom: 29px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}
.hero-title {
	font-size: 54px;
	font-weight: 700;
	color: white;
	text-align: left;
	margin-bottom: 4px;
	line-height: 1.5;
	text-shadow: 3px 2px 8px #000000CC;
	max-width: 831px;
}

.hero-subtitle {
    font-size: 27px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 3px 2px 8px #000000CC;
}

/* Search Section (Separate from hero) */
.search-section {
    background-color: white;
    padding: 2rem 0 3rem 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-wrapper {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0px 3px 8px 0px #000000E5;
	padding: 26px 44px 13px;
	background: white;
}
.search-tabs {
	display: flex;
	gap: 20px;
	margin-bottom: 16px;
}
.search-tab {
	padding: 0 0 13px 0;
	border: none;
	background: none;
	font-size: 18px;
	font-weight: 500;
	color: #737373;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.2s;
	background-color: white;
}
.search-tab.active {
    color: #000000DE;
    border-bottom-color: var(--aradi-green);
}

.search-container-vertical {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	align-items: center;
}
.aradi_hero .search-bar {
	border: none;
	padding: 0;
}
.aradi_hero .search-input {
	width: 100%;
	padding: 10px 10px 10px 51px;
	border: 1px solid #EDF3F1;
	border-radius: 10px;
	font-size: 14px;
	color: #737373;
	background-color: #fafafa;
	box-shadow: none;
	font-weight: 400;
	height: 46px;
	max-width: 500px;
}
.search-bar {
    flex: 3;
    position: relative;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-container-vertical.has-error .search-bar {
    border-color: #dc2626 !important;
}

/* Highlight the actual search input with a red border on validation error */
.search-container-vertical.has-error .search-input {
    border-color: #dc2626 !important;
    animation: search-input-shake 0.3s ease-in-out;
}

@keyframes search-input-shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.search-error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
    padding-left: 5px;
    display: block;
    width: 100%;
    flex-basis: 100%;
    text-align: left;
}

html[dir="rtl"] .search-error-message {
    padding-right: 0;
    text-align: right;
}

.search-icon {
    color: #9ca3af;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: #212121;
    background-color: transparent;
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Google Places Autocomplete styling */
.pac-container {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    z-index: 10000;
}

.pac-item {
    padding: 12px 16px;
    cursor: pointer;
    border-top: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background-color: #f9fafb;
}

.pac-icon {
    margin-right: 8px;
}

.pac-matched {
    font-weight: 600;
    color: #0D352F;
}

.search-filter {
	cursor: pointer;
	min-width: 127px;
	width: 146px;
	padding: 10px 13px;
	border: 1px solid #EDF3F1;
	border-radius: 10px;
	font-size: 14px;
	color: #737373;
	background-color: #fafafa;
	box-shadow: none;
	font-weight: 400;
	height: 46px;
}

.search-filter:focus {
    outline: none;
    border-color: var(--aradi-green);
}
.search-btn {
	padding: 13.5px 33.5px;
	background-color: var(--aradi-green);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.featured-section {
	padding: 70px 0 0px;
}

.featured-section.dark {
    background-color: #1a1a1a;
    color: white;
}

.section-header {
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    margin-bottom: 21px;
}
.section-header-center .section-title {
	font-size: 36px;
	font-weight: 600;
	color: #000000DE;
	margin: 0 0 10px 0;
	text-transform: inherit;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-section .section-title,
.property-types-section .section-title {
    color: #212121;
}

.featured-section.dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-center .section-subtitle {
	font-size: 16px;
	color: #000000DE;
	font-weight: 400;
	line-height: 1.5;
    max-width: 100%;
}
.featured-section.dark .section-subtitle {
    color: #9ca3af;
}

/* Location Tabs */
.location-tabs {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.tab-btn {
    padding: 0 0 13px 0;
    border: none;
      border-bottom-width: medium;
      border-bottom-style: none;
      border-bottom-color: currentcolor;
    background: none;
      background-color: rgba(0, 0, 0, 0);
    font-size: 18px;
    font-weight: 500;
    color: #737373;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    background-color: transparent;
}

.tab-btn:hover,
.tab-btn.active {
    color: #000000DE;
    border-bottom-color: var(--aradi-green);
}

/* Property Grid */
.property-slider-container {
    position: relative;
    margin-bottom: 0;
}

.property-slider {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 80px;
}
.aradi_user_flow .aradi_card .property-title {
	padding: 2px 0 6px;
}
.aradi_user_flow .aradi_card .property-price {
	color: var(--aradi-green);
	margin-bottom: 6px;
}
.aradi_card .property-location {
	margin-bottom: 0;
}
.aradi_user_flow .aradi_user_flow .property-card {
	background-color: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0px 4px 16px 0px #0000001A;
	padding: 6px 5px;
	border: none;
}
.property-slider::-webkit-scrollbar, .type-slider::-webkit-scrollbar {
    display: none;
}

.property-slider.is-empty {
    min-height: 200px;
}

.property-slider .property-card.is-hidden {
    display: none !important;
}

.property-slider .property-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
}

@media (max-width: 1200px) {
    .property-slider .property-card {
        flex: 0 0 calc((100% - 2rem) / 2);
        min-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .property-slider {
        gap: 1.5rem;
    }

    .property-slider .property-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.property-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card-image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	border-radius: 12px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heart-btn {
	position: absolute;
	top: 21px;
	right: 10px;
	/* Keep a reasonable click area, but no visible circle */
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
}

.heart-btn svg {
    width: 24px;
    height: 24px;
}

.heart-btn svg path {
    stroke: #ffffff;
    fill: transparent;
}

.heart-btn.is-favorited {
    background-color: transparent;
}

.heart-btn.is-favorited svg path {
    stroke: #ffffff;
    fill: #ffffff;
}

.featured-tag {
	left: 0;
	border-radius: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: absolute;
	top: 15px;
	width: 95px;
	height: 36px;
	border-radius: 0 10px 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000DE;
	background: #FFFFFF99;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: inherit;
	letter-spacing: 0;
}
.aradi_user_flow .aradi_card .property-content {
	padding: 15px 11px;
}
.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.75rem;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d352f;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.card-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.detail-item svg {
    color: #0d352f;
    width: 18px;
    height: 18px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

/* Type Cards - Base styles consolidated below */

/* Banner Section */
.banner-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 4rem;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-background {
    position: absolute;
    inset: 0;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 3rem;
    color: #ffffff;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background: #0d352f;
    border-radius: 999px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.2s;
}

.banner-cta:hover {
    background: #23471f;
}

@media (max-width: 1024px) {
    .banner-wrapper {
        min-height: 360px;
    }

    .banner-content {
        padding: 2.5rem;
        max-width: 100%;
    }

    .featured-banner-content {
        padding: 3.25rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .banner-wrapper {
        min-height: 320px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-content {
        padding: 2rem;
    }

    .featured-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
    }

    .featured-banner-cta {
        width: 100%;
        justify-content: center;
    }
}


/* Type card image styles are in .type-card-image below */

.type-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
    padding: 1rem 1.5rem 0.5rem;
}

.type-count {
    font-size: 1rem;
    color: #6b7280;
    padding: 0 1.5rem 1.5rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #212121;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    border-color: #0d352f;
    color: #0d352f;
    background-color: #f0fdf4;
}

.carousel-arrow.right {
    right: -25px;
}

.view-more-btn {
    margin-left: auto;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #212121;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
}

.view-more-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-header .view-more-btn {
    margin-top: 0;
}

/* Property Types Section */
.property-types-section {
	padding: 0px;
}

.section-header-slider {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.section-header-text {
    flex: 1;
}

.section-header-slider .section-title {
	color: #000000DE;
	margin-bottom: 10px;
	text-align: left;
	font-size: 36px;
	font-weight: 600;
	text-transform: inherit;
	line-height: 1;
}

.section-header-slider .section-subtitle {
	color: #000000DE;
	text-align: left;
	max-width: 100%;
	margin: 0 0 24px;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 400;
}
.slider-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.slider-arrow {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	background: #F6F6F6;
    padding: 14px;
    border: none;
}
.slider-arrow:hover,
.slider-arrow.active {
    background-color: var(--aradi-green);
    border-color: var(--aradi-green);
    color: white;
}

.slider-arrow:disabled {
    cursor: not-allowed;
	background: #F6F6F6;
    opacity: 0.5;
}

.slider-arrow svg path {
    stroke: #9CA3AF;
    transition: stroke 0.2s;
}
.slider-arrow:hover svg path,
.slider-arrow.active svg path {
    stroke: white;
}
.slider-arrow:disabled svg path {
    stroke: #9CA3AF;
    opacity: 0.5;
}

.type-slider {
    overflow: hidden;
}

.property-types-slider-container {
    position: relative;
}

.type-slider-track {
	display: flex;
	gap: 21px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 80px;
}

.type-slider-track .type-card-link {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: calc((100% - 4.5rem) / 4);
}

.type-slider-track .type-card-disabled {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: calc((100% - 4.5rem) / 4);
}

@media (max-width: 1280px) {
    .type-slider-track .type-card-link,
    .type-slider-track .type-card-disabled {
        flex: 0 0 calc((100% - 3rem) / 3);
        min-width: calc((100% - 3rem) / 3);
    }
}

@media (max-width: 1024px) {
    .type-slider-track .type-card-link,
    .type-slider-track .type-card-disabled {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .type-slider-track {
        gap: 1.25rem;
    }

    .type-slider-track .type-card-link,
    .type-slider-track .type-card-disabled {
        flex: 0 0 100%;
        min-width: 100%;
    }
}
.type-card {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0px -90px 50px 0px #00000080 inset;
	cursor: pointer;
}

.type-card:hover {
	transform: translateY(-4px);
	box-shadow: 0px -90px 50px 0px #00000080 inset, 0 8px 16px rgba(0, 0, 0, 0.15);
}

.type-card-image {
    position: relative;
    width: 100%;
    height: 348px;
    overflow: hidden;
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.type-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
	padding: 24px 20px;
	z-index: 1;
}
.type-card .type-title {
	font-size: 20px;
	font-weight: 600;
	color: white;
	margin-bottom: 8px;
	padding: 0;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.type-card .type-count {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 400;
	padding: 0;
	margin: 0;
	line-height: 1.4;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.type-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.type-card-link:hover .type-card {
	transform: translateY(-4px);
}

.type-card-disabled {
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
}

.type-card-disabled:hover {
	transform: none;
}
/* Featured Banner */
.featured-banner {
	padding: 68px 58px;
	margin: 0 auto 80px;
	max-width: 1200px;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}
.aradi_user_flow {
	background: #FAFAFA;
}
.featured-banner.dark {
    background: #1a1a1a;
    position: relative;
}

.featured-banner-background {
    position: absolute;
    inset: 0;
}

.featured-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-banner.dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%),
        radial-gradient(circle at top right, rgba(253, 230, 138, 0.25) 0%, rgba(253, 230, 138, 0) 55%),
        radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0) 45%);
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}
.featured-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.featured-banner-text {
    flex: 1;
    max-width: 640px;
}

.featured-banner-text .section-title {
	color: #ffffff;
	margin-bottom: 10px;
	text-align: left;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	text-transform: inherit;
}

.featured-banner-text .section-subtitle {
	color: #ffffff;
	margin-bottom: 0;
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-transform: inherit;
	margin: 0;
}
.featured-banner-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: white;
	color: var(--aradi-green);
	font-size: 14px;
	font-weight: 500;
	border-radius: 12px;
	transition: all 0.2s ease;
	min-width: 140px;
	height: 50px;
}

/* Mobile App Section */
.mobile-app-section {
	padding: 53px 0 63px;
	background-color: white;
}
.app-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 20px;
	align-items: center;
	z-index: 3;
	position: relative;
}
.mobile-app-section .container {
	position: relative;
}
.overlay_mobile_srn {
	position: absolute;
	top: 75px;
	right: 0;
	z-index: 0;
}
.app-text {
    padding-right: 0;
}
.app-text h6 {
	font-size: 16px;
	font-weight: 500;
	color: var(--aradi-green);
	margin-bottom: 6px;
}
.app-title {
    font-size: 36px;
    font-weight: 600;
    color: #000000DE;
    margin-bottom: 10px;
    line-height: 1;
}

.app-description {
    font-size: 16px;
    color: #000000DE;
    margin-bottom: 31px;
}

.app-buttons {
    display: flex;
    gap: 23px;
}

.app-image img {
	width: 356px;
	height: auto;
	border-radius: 20px;
}
/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background-color: #f5f5f5;
}

.testimonials-slider-nav {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.testimonials-slider-btn {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #0D352F;
}

.testimonials-slider-btn:hover:not(.is-disabled) {
	background: #0D352F;
	color: #ffffff;
	border-color: #0D352F;
}

.testimonials-slider-btn.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.testimonials-slider-container {
	position: relative;
	overflow: hidden;
}

.testimonials-slider-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 0 50px; */
}

.testimonials-slider {
	overflow: hidden;
}

.testimonials-slider-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 20px;
}

.testimonials-slider-track::-webkit-scrollbar {
	display: none;
}

.testimonials-slider-track .testimonial-card {
	flex: 0 0 calc(50% - 12px);
	min-width: calc(50% - 12px);
}

.testimonial-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	color: #0D352F;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slider-btn:hover {
	background: #0D352F;
	color: white;
	border-color: #0D352F;
	box-shadow: 0 4px 12px rgba(13, 53, 47, 0.2);
}

.testimonial-slider-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.testimonial-prev {
	left: 0;
}

.testimonial-next {
	right: 0;
}

@media (max-width: 1024px) {
	.testimonials-slider-container {
		padding: 0 60px;
	}

	.testimonials-slider-track .testimonial-card {
		flex: 0 0 calc(100% - 12px);
		min-width: calc(100% - 12px);
	}
}

@media (max-width: 768px) {
	.testimonials-slider-container {
		padding: 0 50px;
	}

	.testimonial-slider-btn {
		width: 40px;
		height: 40px;
	}

	.testimonial-prev {
		left: 5px;
	}

	.testimonial-next {
		right: 5px;
	}
}

.testimonial-card {
	background-color: white;
	border-radius: 20px;
	padding: 30px;
	transition: all 0.3s;
	position: relative;
	border: 1px solid #0000001A;
	overflow: visible;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.testimonials-slider .profile-img,
.testimonials-grid .profile-img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	position: relative;
	flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.customer-name {
	font-size: 18px;
	font-weight: 500;
	color: #1E1E1E;
	margin: 0;
	line-height: 1.2;
}

.customer-role {
	font-size: 12px;
	color: #1E1E1E;
	margin: 0;
	font-weight: 400;
	opacity: 0.8;
}

.rating {
    display: flex;
    gap: 0;
    margin-top: 4px;
}

.rating svg {
	width: 87px;
	height: 13px;
}

.quote-icon {
	position: absolute;
	top: -10px;
	right: 20px;
	width: 39px;
	height: 39px;
	z-index: 1;
	opacity: 1;
}

.quote-icon svg {
    width: 39px;
    height: 39px;
}

.testimonial-text {
	font-size: 14px;
	color: #1E1E1E;
	line-height: 1.6;
	font-weight: 400;
	margin-top: 16px;
	text-align: start;
	direction: inherit;
}

[dir="rtl"] .testimonial-text {
	text-align: right;
}

[dir="ltr"] .testimonial-text {
	text-align: left;
}

[dir="rtl"] .quote-icon {
	right: auto;
	left: 20px;
}

[dir="ltr"] .quote-icon {
	left: auto;
	right: 20px;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Footer */
.home-footer {
    background-color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-english {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d352f;
}

.logo-arabic {
    font-size: 1rem;
    font-weight: 600;
    color: #0d352f;
    direction: rtl;
}

.footer-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0d352f;
}

.footer-links-section {
    margin-bottom: 2rem;
}

.footer-contact-section {
    margin-top: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: #6b7280;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #0d352f;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .search-container {
        flex-direction: column;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 4rem 2rem;
        max-width: 1400px;
    }

    .banner-content .banner-text {
        width: 100%;
    }

    .banner-content .section-title,
    .banner-content .section-subtitle {
        text-align: left;
    }

    .featured-banner .view-more-btn {
        align-self: flex-start;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .app-text {
        padding-right: 0;
    }

    .app-image {
        order: -1;
    }

    .carousel-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .section-header-slider {
        flex-direction: column;
        gap: 1.5rem;
    }

    .slider-controls {
        align-self: flex-end;
    }

    /* .type-slider-track uses flex, not grid */

    .type-card-image {
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-description {
        max-width: 100%;
    }

    @media (max-width: 768px) {
        .type-slider-track {
            grid-template-columns: 1fr;
        }

        .type-card-image {
            height: 250px;
        }

        /* Testimonials slider responsive styles are above */

        .testimonial-card {
            padding: 1.5rem;
        }

        .quote-icon svg {
            width: 50px;
            height: 50px;
        }

        .quote-icon {
            top: 0;
            right: 1rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-wrapper {
        grid-template-columns: 1fr;
    }

    .location-tabs {
        gap: 0.5rem;
    }

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

