/* ========================================
   NABTA REAL ESTATE - MODERN & ELEGANT CSS
   ======================================== */

/* Import Arabic Font - Cairo (Modern & Professional) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800&display=swap');

/* Arabic Font Styling - Cairo Font */
html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] a:not(.fa):not(.fab):not(.fas):not(.far):not(.fal),
html[lang="ar"] span:not(.fa):not(.fab):not(.fas):not(.far):not(.fal),
html[lang="ar"] div:not(.fa):not(.fab):not(.fas):not(.far):not(.fal),
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] label,
html[lang="ar"] li {
    font-family: 'Cairo', sans-serif !important;
}

/* Ensure Font Awesome icons are NOT affected */
html[lang="ar"] i,
html[lang="ar"] .fa,
html[lang="ar"] .fab,
html[lang="ar"] .fas,
html[lang="ar"] .far,
html[lang="ar"] .fal,
html[lang="ar"] [class^="fa-"],
html[lang="ar"] [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

@media (max-width: 1024px) {
  .hero-bg-img {
    content: url("../assets/img/banner-1.jpg") !important;
  }
}

/* Color Palette */
:root {
    --primary-color: #07434A;
    --secondary-color: #EBE8BD;
    --accent-color: #9AB9A5;
    --light-bg: #F9F9F9;
    --dark-text: #1A1A1A;
    --border-light: #E8E8E8;
    --white: #FFFFFF;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========================================
   LOADING SCREEN
   ======================================== */

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        #0a5a67 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 2rem 1rem;
}

/* Fallback for older browsers */
@supports not (height: 100dvh) {
    #loading-screen {
        height: 100vh;
        min-height: -webkit-fill-available;
    }
}

#loading-screen.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.loader {
    text-align: center;
    position: relative;
    max-width: 90vw;
    width: 100%;
}

/* Modern Dot Loader */
.loader-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.loader-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0;
}

.loader-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-image img {
    max-width: 400px;
}

.loader-subtext {
    color: var(--secondary-color) !important;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    word-break: keep-all;
    overflow-wrap: break-word;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .loader-image img {
        max-width: 200px;
    }

    .loader-subtext {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes dotPulse {
    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a5a67 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 0.6s ease-out;
}

.loader-logo {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loader-spinner {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loader-logo img {
        width: 120px;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .loader-text {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    font-weight: 300;
    line-height: 1.8;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 400;
}

.section-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar-custom {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: .5rem 0;
    transition: all 0.4s ease;
}

.navbar-custom.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* Navbar for pages with breadcrumb sections (non-home pages) */
body:not(.home-page) .navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

body:not(.home-page) .navbar-custom .nav-link {
    color: var(--dark-text) !important;
    text-shadow: none;
}

body:not(.home-page) .navbar-custom .navbar-toggler {
    border-color: var(--primary-color) !important;
}

body:not(.home-page) .navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23074348' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

body:not(.home-page) .navbar-custom .language-switcher {
    border-inline-start: 2px solid var(--border-light);
}

body:not(.home-page) .navbar-custom .language-switcher .nav-link {
    color: var(--primary-color) !important;
    background: rgba(7, 67, 74, 0.08);
}

body:not(.home-page) .navbar-custom .language-switcher .nav-link:hover {
    background: rgba(7, 67, 74, 0.15);
    color: var(--primary-color) !important;
}

.logo-img {
    max-width: 125px;
}

.brand-text {
    letter-spacing: 1px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin-inline-start: .5rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-custom.navbar-scrolled .nav-link {
    color: var(--dark-text) !important;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(7, 67, 74, 0.12) 0%, rgba(154, 185, 165, 0.08) 100%);
    box-shadow: 0 2px 8px rgba(7, 67, 74, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link.active-link::after {
    width: 0;
}

.nav-link.active-link:hover {
    background: linear-gradient(135deg, rgba(7, 67, 74, 0.18) 0%, rgba(154, 185, 165, 0.12) 100%);
    box-shadow: 0 4px 12px rgba(7, 67, 74, 0.15);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: white !important;
    border-width: 2px;
}

.navbar-custom.navbar-scrolled .navbar-toggler {
    border-color: var(--primary-color) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-custom.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23074348' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
    margin-inline-start: 0rem;
    border-inline-start: 2px solid rgba(255, 255, 255, 0.3);
    margin-inline-start: 10px;
}

[dir="rtl"] .language-switcher {
    margin-inline-start: 10px;
}

.navbar-custom.navbar-scrolled .language-switcher {
    border-inline-start: 2px solid var(--border-light);
}

.language-switcher .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.navbar-custom.navbar-scrolled .language-switcher .nav-link {
    color: var(--primary-color) !important;
    background: rgba(7, 67, 74, 0.08);
}

.language-switcher .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    color: white !important;
}

.navbar-custom.navbar-scrolled .language-switcher .nav-link:hover {
    background: rgba(7, 67, 74, 0.15);
    color: var(--primary-color) !important;
}

.language-switcher .nav-link i {
    font-size: 1.1rem;
}

.language-switcher .lang-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Navbar Collapse Background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-collapse .nav-link {
        color: var(--dark-text) !important;
        text-shadow: none;
    }
}

/* Responsive Language Switcher */
@media (max-width: 992px) {
    .language-switcher {
        margin-inline-start: 0;
        border-inline-start: none;
        padding-inline-start: 0;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 2px solid var(--border-light);
        border-inline-start: 0px !important;
    }
        
    .language-switcher .nav-link {
        justify-content: center;
        padding: 0.75rem 0;
        background: transparent;
        color: var(--primary-color) !important;
    }

    .language-switcher .nav-link:hover {
        background: rgba(7, 67, 74, 0.08);
    }
}

@media (max-width: 576px) {
    .language-switcher {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .language-switcher .lang-text {
        font-size: 0.9rem;
    }

    .language-switcher .nav-link i {
        font-size: 1rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-bg-img.banner-1 {
    object-fit: fill;
    content: url("../img/banner.jpg");
}

@media (max-width: 1024px) {
    .hero-bg-img.banner-1 {
        object-fit: cover;
        content: url("../img/banner-1.jpg") !important;
    }
}

.hero-bg-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 67, 74, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: white;
    animation: fadeInUp 1s ease 0.2s both;
    height: 95%;
    margin-inline-start: 40px;
}

@media (max-width: 768px) {
    .hero-content {
        height: 99%;
        margin-inline-start: 0;
    }
    .hero-content .hero-title,
    .hero-content .hero-subtitle {
        text-align: center;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E8E8E8;
    font-weight: 300;
    margin-bottom: 1.75rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #faf5e1 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-secondary-custom {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Hero Navigation Arrows - Hidden for static image */
.hero-arrow {
    display: none !important;
}



/* Hero Indicators (Bullets) - Hidden for static image */
.hero-indicators {
    display: none !important;
}



@media (max-width: 768px) {
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-inline-start: 20px;
        padding-inline-end: 20px;
    }
    
    .hero-content {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.875rem 2rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-arrow-prev {
        transform: translate(-230%, 50%);
    }

    .hero-arrow-next {
        transform: translate(130%, 50%);
    }

    .hero-arrow-prev:hover {
        transform: translate(-230%, 50%) scale(1.1);
    }

    .hero-arrow-next:hover {
        transform: translate(130%, 50%) scale(1.1);
    }

    .hero-indicators {
        bottom: 1.5rem;
        gap: 0.75rem;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-indicator.active {
        width: 28px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-primary-custom i,
    .btn-secondary-custom i {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background-color: var(--light-bg);
}

.about-image-grid {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-img.main-img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    z-index: 3;
    top: 10%;
    left: 55%;
    transform: translateX(-50%);
}

[dir="rtl"] .about-img.main-img {
    left: 45%;
}

.about-img.tertiary-img {
    width: 45%;
    height: 45%;
    object-fit: cover;
    z-index: 1;
    bottom: 0%;
    left: 0;
    border: 10px solid white;
    z-index: 10;
}

[dir="rtl"] .about-img.tertiary-img {
    left: auto;
    right: 0;
}

.about-image-grid:hover .about-img.main-img {
    transform: translateX(-50%) scale(1.05);
}

.about-image-grid:hover .about-img.tertiary-img {
    transform: translateX(10px);
}

#about .btn-view-details {
    width: fit-content;
    padding: 15px 30px;
}

@media (max-width: 768px) {
    .about-image-grid {
        height: 300px;
    }

    .about-img.main-img {
        width: 80%;
        height: 80%;
    }

    .about-img.tertiary-img {
        width: 50%;
        height: 50%;
        border: 8px solid white;
    }

    #about .section-title {
        text-align: center;
    }
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */
.experience-section {
    background: #0f1f28;
    padding: 5rem 0;
    position: relative;
}

.experience-section::before,
.experience-section::after {
    display: none;
}

.experience-section .section-title {
    color: #f0f5f4;
}

.experience-card {
    background: rgba(20, 45, 55, 0.5);
    padding: 1.5rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(154, 185, 165, 0.15);
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 4.3rem;
}

[dir="rtl"] .experience-card {
    text-align: right;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    background: rgba(20, 45, 55, 0.8);
    border-color: rgba(154, 185, 165, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
}

.experience-card:hover .experience-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: rgba(235, 232, 189, 0.08);
}

.experience-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.3rem;
}

.experience-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.experience-detail {
    position: absolute;
    bottom: 10px;
    color: rgba(154, 185, 165, 0.85);
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    line-height: 1.6;
    margin: 0;
}

.experience-text {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-inline-start: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.experience-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.experience-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.experience-text p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .experience-section {
        padding: 3.5rem 0;
    }

    .experience-card {
        padding: 1.5rem;
        border-radius: 10px;
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        padding-bottom: 3rem;
    }

    .experience-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        border: 2px solid var(--secondary-color);
        margin-bottom: 0;
    }

    .experience-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .experience-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .experience-detail {
        font-size: 0.85rem;
    }

    .experience-text {
        padding: 2rem;
    }

    .experience-text h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   PROJECT SHOWCASE SECTION
   ======================================== */
.project-showcase-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.project-showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(154, 185, 165, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Left Side - Content */
.project-showcase-content {
    padding-inline-start: 2rem;
}

.project-showcase-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(7, 67, 74, 0.2);
}

.project-showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-showcase-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.project-showcase-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Features List */
.project-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.project-showcase-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-showcase-features li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(7, 67, 74, 0.15);
}

[dir="rtl"] .project-showcase-features li:hover {
    transform: translateX(-10px);
}

.project-showcase-features li i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-inline-end: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

[dir="rtl"] .project-showcase-features li i {
    margin-inline-end: 0;
    margin-inline-start: 1rem;
}

.project-showcase-features li span {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Explore Button */
.btn-showcase-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(7, 67, 74, 0.3);
    position: relative;
    overflow: hidden;
    outline: none;
    border: none
}

.btn-showcase-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-showcase-explore:hover::before {
    left: 100%;
}

.btn-showcase-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 67, 74, 0.4);
    color: white;
}

.btn-showcase-explore i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-showcase-explore:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .btn-showcase-explore:hover i {
    transform: translateX(-5px);
}

/* Right Side - Image Gallery */
.project-showcase-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

/* Main Featured Image */
.showcase-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.showcase-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-main-image:hover img {
    transform: scale(1.08);
}

/* Thumbnail Grid */
.showcase-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.showcase-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    height: 180px;
    cursor: pointer;
}

.showcase-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-thumbnail:hover img {
    transform: scale(1.1);
}

/* Image Overlay */
.showcase-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 67, 74, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.showcase-main-image:hover .showcase-image-overlay,
.showcase-thumbnail:hover .showcase-image-overlay {
    opacity: 1;
}

.showcase-image-overlay i {
    font-size: 1.5rem;
    color: white;
    animation: zoomPulse 1.5s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .project-showcase-content {
        padding-inline-start: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .project-showcase-title {
        font-size: 2.2rem;
    }

    .project-showcase-subtitle {
        font-size: 1.1rem;
    }

    .project-showcase-features li {
        justify-content: center;
        text-align: left;
    }

    .btn-showcase-explore {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .project-showcase-title {
        font-size: 1.8rem;
    }

    .project-showcase-subtitle {
        font-size: 1rem;
    }

    .showcase-main-image {
        height: 300px;
    }

    .showcase-thumbnail {
        height: 140px;
    }

    .showcase-thumbnail-grid {
        gap: 0.8rem;
    }

    .project-showcase-features li {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .project-showcase-title {
        font-size: 1.5rem;
    }

    .project-showcase-subtitle {
        font-size: 0.95rem;
    }

    .project-showcase-description {
        font-size: 0.95rem;
    }

    .showcase-main-image {
        height: 250px;
    }

    .showcase-thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .showcase-thumbnail {
        height: 100px;
    }

    .btn-showcase-explore {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .project-showcase-features li i {
        font-size: 1.1rem;
    }

    .project-showcase-features li span {
        font-size: 0.9rem;
    }
}

/* ========================================
   FEATURES SECTION (Combined with Project Info)
   ======================================== */
.features-section {
    background: linear-gradient(135deg, #f5f7f6 0%, #eef5f4 100%);
    padding: 5rem 0;
}

.feature-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(154, 185, 165, 0.15);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(7, 67, 74, 0.12);
    border-color: rgba(154, 185, 165, 0.3);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(154, 185, 165, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(154, 185, 165, 0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}


/* ========================================
   FEATURES PREMIUM SECTION
   ======================================== */
.features-premium-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 5rem 0;
}

.features-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(154, 185, 165, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(7, 67, 74, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.features-premium-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.features-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0 2rem;
    position: relative;
}

.features-label::before,
.features-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.features-label::before {
    left: 0;
}

.features-label::after {
    right: 0;
}

[dir="rtl"] .features-label::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .features-label::after {
    right: auto;
    left: 0;
}

.features-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Feature Premium Card */
.feature-premium-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(154, 185, 165, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(7, 67, 74, 0.15);
    border-color: rgba(154, 185, 165, 0.3);
}

.feature-premium-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(235, 232, 189, 0.2), rgba(154, 185, 165, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-premium-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-premium-card:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-premium-card:hover .feature-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

/* Feature Card Content */
.feature-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-premium-card:hover .feature-card-title {
    color: var(--primary-color);
}

.feature-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features-main-title {
        font-size: 2rem;
    }

    .feature-premium-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon-wrapper i {
        font-size: 2rem;
    }

    .feature-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .features-premium-section {
        padding: 3.5rem 0;
    }

    .features-main-title {
        font-size: 1.75rem;
    }

    .features-label {
        font-size: 0.85rem;
        padding: 0 1.5rem;
    }

    .features-label::before,
    .features-label::after {
        width: 30px;
    }

    .feature-premium-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .feature-icon-wrapper i {
        font-size: 1.8rem;
    }

    .feature-card-title {
        font-size: 1.15rem;
    }

    .feature-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .features-main-title {
        font-size: 1.5rem;
    }

    .features-label {
        font-size: 0.8rem;
        padding: 0 1.2rem;
    }

    .features-label::before,
    .features-label::after {
        width: 25px;
    }

    .feature-premium-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper i {
        font-size: 1.6rem;
    }

    .feature-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* ========================================
   WARRANTY SIMPLE SECTION
   ======================================== */
.warranty-simple-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.warranty-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(7, 67, 74, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(154, 185, 165, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.warranty-simple-section .container {
    position: relative;
    z-index: 1;
}

.warranty-simple-section .section-subtitle {
    margin-bottom: 0;
}

/* Warranty Item */
.warranty-simple-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(154, 185, 165, 0.15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.warranty-simple-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(7, 67, 74, 0.12);
    border-color: rgba(154, 185, 165, 0.3);
}

.warranty-simple-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.warranty-simple-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.warranty-simple-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    min-width: 80px;
    text-align: center;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(7, 67, 74, 0.2);
    transition: all 0.3s ease;
}

.warranty-simple-badge.warranty-long {
    background: linear-gradient(135deg, #D4835B, #c7754f);
}

.warranty-simple-item:hover .warranty-simple-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(7, 67, 74, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .warranty-simple-item {
        padding: 1.5rem 1.25rem;
    }

    .warranty-simple-title {
        font-size: 1rem;
    }

    .warranty-simple-badge {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 768px) {
    .warranty-simple-section {
        padding: 3.5rem 0;
    }

    .warranty-simple-item {
        padding: 1.5rem 1.25rem;
        margin-bottom: 0;
    }

    .warranty-simple-content {
        flex-direction: row;
        gap: 1rem;
    }

    .warranty-simple-title {
        font-size: 0.95rem;
        text-align: left;
    }

    [dir="rtl"] .warranty-simple-title {
        text-align: right;
    }

    .warranty-simple-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .warr-card {
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .warranty-simple-item {
        padding: 1.25rem 1rem;
    }

    .warranty-simple-content {
        gap: 0.75rem;
    }

    .warranty-simple-title {
        font-size: 0.9rem;
    }

    .warranty-simple-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7, 67, 74, 0.1);
    transition: box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .location-map iframe {
        height: 280px;
        margin-bottom: 20px;
    }
}

.location-map:hover {
    box-shadow: 0 8px 24px rgba(7, 67, 74, 0.15);
}

.location-map iframe {
    border-radius: 12px;
}

.location-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.6rem;
    padding-inline-start: 2rem;
}

[dir="rtl"] .location-title {
    padding-inline-start: 0;
    padding-inline-end: 2rem;
}

.location-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    background: white;
    border-radius: 8px;
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.location-list li:hover {
    box-shadow: 0 4px 12px rgba(7, 67, 74, 0.08);
    background-color: #fafbfc;
}

.location-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f5f4;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.location-list li:hover i {
    background-color: var(--primary-color);
    color: white;
}

.location-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.location-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .location-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .location-title {
        padding-inline-start: 0;
    }

    .location-list {
        padding-inline-start: 0;
    }

    .location-list li {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        gap: 1rem;
    }

    .location-list i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* ========================================
   UNITS SECTION (Available Units)
   ======================================== */
.units-section {
    background-color: white;
}

.units-section .explore-more {
    width: fit-content;
    margin-inline-start: auto;
}


.units-filter-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Floor Tabs */
.floor-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.floor-tabs {
    display: flex;
    gap: 1rem;
    background-color: var(--light-bg);
    padding: 0.5rem;
    border-radius: 15px;
}

.floor-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.floor-tab:hover {
    background-color: rgba(7, 67, 74, 0.1);
}

.floor-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* Unit Grid */
.units-grid {
    width: 100%;
}

/* No Results Message */
.no-results-message {
    min-height: auto;
    margin: 2rem 0;
}

.floor-content {
    display: none;
}

.floor-content.active {
    display: block;
}

/* Unit Card */
.unit-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    height: 100%;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(7, 67, 74, 0.15);
}

.unit-card[data-status="sold"],
.unit-card[data-status="reserved"] {
    opacity: 0.7;
}

.unit-card[data-status="مباعة"],
.unit-card[data-status="محجوزة"] {
    opacity: 0.7;
}

.unit-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--light-bg);
    padding-bottom: 60%;
}

.unit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unit-card:hover .unit-image img {
    transform: scale(1.05);
}

.unit-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 10;
}
[dir="rtl"] .unit-status {
    right: auto;
    left: 12px;
}

.unit-status.available {
    background-color: #10B981;
    color: white;
}

.unit-status.sold {
    background-color: #EF4444;
    color: white;
}

.unit-status.reserved {
    background-color: #F59E0B;
    color: white;
}

/* Unit Number Badge on Image */
.unit-number {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

[dir="rtl"] .unit-number {
    left: auto;
    right: 12px;
}

.unit-number span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.unit-card:hover .unit-number {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.unit-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Price Display - Prominent Center Position */
.unit-price {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin: 0px 0 .25rem;
    font-weight: 700;
    text-align: center;
    padding: 0.25rem;
    background: linear-gradient(135deg, rgba(7, 67, 74, 0.03) 0%, rgba(7, 67, 74, 0.08) 100%);
    border-radius: 10px;
    border: 2px solid rgba(7, 67, 74, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.unit-card:hover .unit-price {
    background: linear-gradient(135deg, rgba(7, 67, 74, 0.08) 0%, rgba(7, 67, 74, 0.12) 100%);
    border-color: rgba(7, 67, 74, 0.2);
    transform: scale(1.02);
}

.unit-type,
.unit-floor,
.unit-area {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unit-type i,
.unit-floor i,
.unit-area i {
    color: var(--primary-color);
    width: 16px;
}

.unit-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.btn-view-details {
    margin-top: 4px;
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: #052f33;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(7, 67, 74, 0.2);
}

/* Floor Plan Button */
.btn-view-floor-plan {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem .75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 8px;
}

.btn-view-floor-plan:hover {
    background: #c48d3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.3);
}

.btn-view-floor-plan i {
    font-size: .75rem;
}

@media (max-width: 768px) {
    .btn-view-floor-plan {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* 4-Column Layout Adjustments */
@media (min-width: 1200px) {
    .unit-card {
        max-width: 100%;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .unit-card {
        max-width: 100%;
    }
    
    .unit-content {
        padding: .8rem;
    }
}

@media (max-width: 991px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .unit-content {
        padding: .625rem;
    }
    
    .unit-number {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .unit-price {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

@media (max-width: 576px) {
    .col-lg-3,
    .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .unit-content {
        padding: .625rem;
    }
    
    .unit-number {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    
    .unit-price {
        font-size: 1.35rem;
        padding: 0.5rem;
    }
    
    .unit-type,
    .unit-floor,
    .unit-area {
        font-size: 0.85rem;
    }
}

.btn-view-details {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d5a63 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(7, 67, 74, 0.2);
}

/* Unit Modal */
.unit-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.unit-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.unit-modal-content {
    background-color: white;
    border-radius: 15px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

.unit-modal-wrapper {
    display: flex;
    gap: 0;
    max-height: 600px;
}

.unit-modal-close {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    line-height: 1;
    color: white;
    background-color: var(--primary-color);
}

[dir="rtl"] .unit-modal-close {
    right: auto;
    left: -20px;
}

@media (max-width: 767px) {
    .unit-modal-close {
        width: 30px;
        height: 30px;
        right: -10px;
        top: -15px;
        font-size: 20px;
    }

    [dir="rtl"] .unit-modal-close {
        right: auto;
        left: -10px;
    }
}

.unit-modal-close:hover {
    transform: scale(1.1);
}

.unit-modal-details {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

[dir="rtl"] .modal-status-badge {
    right: auto;
    left: 15px;
}

.modal-status-badge.available {
    background-color: #10B981;
    color: white;
}

.modal-status-badge.sold {
    background-color: #EF4444;
    color: white;
}

.modal-status-badge.reserved {
    background-color: #F59E0B;
    color: white;
}

/* Modal Details */
.modal-header {
    border-bottom: 2px solid var(--light-bg);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-subtitle {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Quick Info */
.modal-quick-info {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .25rem;
}

.info-item {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.info-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f0f5f4 0%, #dff0ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.info-value {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Modal Sections */
.section-heading {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-heading::before {
    content: '';
    width: 3px;
    height: 1.3rem;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Area Breakdown */
.area-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.area-item {
    background: var(--light-bg);
    padding: .8rem 0 0 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

[dir="rtl"] .area-item {
    padding: .8rem 1rem 0 0;
}

.area-item.highlight {
    background: linear-gradient(135deg, #f0f5f4 0%, #dff0ed 100%);
    border: 2px solid var(--primary-color);
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 67, 74, 0.1);
}

.area-icon {
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.area-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.area-size {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}


/* Description Text */
.description-text {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Button */
.btn-contact-modal {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d5a63 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.btn-contact-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(7, 67, 74, 0.3);
}

.btn-contact-modal i {
    font-size: 1.1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .unit-modal-details {
        padding: 1.5rem;
    }
    .unit-modal.active {
        padding: 1rem;
    }

    .unit-modal-content {
        border-radius: 12px;
    }

    .unit-modal-details {
        padding: 1.5rem;
    }

    .modal-quick-info {
        grid-template-columns: 2fr 1fr;
        gap: 1rem;
    }

    .area-breakdown {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding-bottom: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        width: 25%;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, #f5f7f6 0%, #eef5f4 100%);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.98rem;
}

.contact-info-item {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.contact-text {
    text-align: center;
    width: 100%;
}

.contact-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
}

.contact-text p {
    margin: 0.3rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-text a:hover {
    color: var(--accent-color);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 0.5rem !important;
    display: block;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(7, 67, 74, 0.1);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-inline-end: 2.5rem;
}

[dir="rtl"] select.form-control {
    background-position: left 0.75rem center;
    padding-inline-start: 2.5rem;
    padding-inline-end: 0.75rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-weight: 300;
}

.btn-submit {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #052f35);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(7, 67, 74, 0.3);
    color: white;
}

.btn-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info-item {
        padding: 1.5rem 1rem;
    }

    .contact-info-item:hover {
        transform: translateY(-3px);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-text h4 {
        font-size: 1.1rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    padding: 0.5rem 0;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links i {
    color: var(--accent-color);
    margin-inline-end: 0.75rem;
}

.social-links {
    display: flex;
    gap: .5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(235, 232, 189, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.15);
}

.footer-divider {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(7, 67, 74, 0.3);
}

[dir="rtl"] .scroll-top-btn {
    right: auto;
    left: 30px;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #052f35;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(7, 67, 74, 0.4);
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll behavior for navigation */
a.smooth-scroll {
    text-decoration: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    [dir="rtl"] .scroll-top-btn {
        right: auto;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .nav-link {
        margin-inline-start: 0;
        padding: 0.75rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .spec-box {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 2rem 0 1rem;
    }
}

/* ========================================
   GALLERY LIGHTBOX STYLES
   ======================================== */
.lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2000 !important;
    animation: fadeIn 0.4s ease !important;
    padding: 20px !important;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s ease;
}

.lightbox-content img {
    height: 500px;
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    display: none;
}

[dir="rtl"] .lightbox-close {
    right: auto;
    left: 0;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 15px !important;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: -45px;
        width: 45px;
        height: 45px;
        font-size: 30px;
    }

    .lightbox-content img {
        height: 350px;
        width: 350px;
        border-radius: 12px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    /* General Mobile Responsive Fixes */
    * {
        box-sizing: border-box;
    }
    
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    /* Row and Column Fixes */
    .row {
        margin-inline-start: -15px;
        margin-inline-end: -15px;
    }
    
    [class*='col-'] {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
        margin-bottom: 1.5rem;
    }
    
    /* Design Cards */
    .design-card {
        margin-bottom: 1.5rem;
    }
    
    /* Warranty Cards */
    .warranty-card {
        margin-bottom: 1.5rem;
    }
    
    /* Feature Cards */
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    /* Unit Cards */
    .unit-card {
        margin-bottom: 0rem;
    }

    .floor-content .row.g-4 > div {
        margin-bottom: 0 !important;
    }
    
    .lightbox {
        padding: 10px !important;
    }

    .lightbox-content {
        max-width: 100%;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 28px;
        background-color: rgba(255, 255, 255, 0.25);
    }

    [dir="rtl"] .lightbox-close {
        right: auto;
        left: 15px;
    }
}

/* Print Styles */
@media print {
    .navbar-custom,
    .scroll-top-btn {
        display: none;
    }
}

/* Other PAGES STYLING ----------------------------*/

/* Hero Section */
.breadcrumb-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.breadcrumb-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 67, 74, 0.6);
    z-index: 1;
}

.breadcrumb-section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 120px;
    padding: 0 1.5rem;
}

.breadcrumb-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.breadcrumb-section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-page-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Responsive Breadcrumb Section */
@media (max-width: 1024px) {
    .breadcrumb-section {
        height: 350px;
    }

    .breadcrumb-section-content {
        margin-top: 100px;
    }

    .breadcrumb-section-title {
        font-size: 2.8rem;
    }

    .breadcrumb-section-subtitle {
        font-size: 1rem;
    }

    .contact-page-hero {
        height: 300px;
    }

    .contact-page-hero-title {
        font-size: 2.5rem;
    }

    .contact-page-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 300px;
        margin-top: 72px;
    }

    .breadcrumb-section-content {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .breadcrumb-section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .breadcrumb-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-page-hero {
        height: 250px;
        margin-top: 55px;
    }

    .contact-page-hero-title {
        font-size: 1.8rem;
    }

    .contact-page-hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        height: 250px;
        margin-top: 72px;
    }

    .breadcrumb-section-content {
        margin-top: 60px;
        padding: 0 1rem;
    }

    .breadcrumb-section-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .breadcrumb-section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .contact-page-hero {
        height: 200px;
        margin-top: 50px;
    }

    .contact-page-hero-title {
        font-size: 1.3rem;
    }

    .contact-page-hero-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .breadcrumb-section {
        height: 220px;
    }

    .breadcrumb-section-content {
        margin-top: 50px;
        padding: 0 0.8rem;
    }

    .breadcrumb-section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .breadcrumb-section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-page-hero {
        height: 180px;
    }

    .contact-page-hero-title {
        font-size: 1.1rem;
    }

    .contact-page-hero-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .breadcrumb-section {
        height: 250px;
        margin-top: 40px;
    }

    .breadcrumb-section-content {
        margin-top: 40px;
    }

    .breadcrumb-section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .breadcrumb-section-subtitle {
        font-size: 0.9rem;
    }

    .contact-page-hero {
        height: 250px;
    }

    .contact-page-hero-title {
        font-size: 1.6rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES - SIMPLE & CLEAN
   ======================================== */

/* Header Styles */
.contact-page-label {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}

.contact-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-page-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.contact-page-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(7, 67, 74, 0.1);
}

.contact-page-input::placeholder {
    color: #999;
}

select.contact-page-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M0 3l6 6 6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-inline-end: 2.5rem;
}

[dir="rtl"] select.contact-page-input {
    background-position: left 1rem center;
    padding-inline-start: 2.5rem;
    padding-inline-end: 1rem;
}

.contact-page-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page-btn {
    padding: 0.95rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-page-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Visual Placeholder */
.contact-page-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8eef1 0%, #d5dce3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 2rem;
}

.contact-page-image-placeholder h3 {
    margin: 0;
    font-size: 2.5rem;
}

/* Info Cards */
.contact-page-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-page-info-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.contact-page-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0d5a63);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-page-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-page-info-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-page-info-value {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-page-info-value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-page-info-value a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-page-title {
        font-size: 2rem;
    }

    .contact-page-description {
        font-size: 0.95rem;
    }

    .contact-page-image-placeholder {
        height: 300px;
    }

    .contact-page-image-placeholder h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0;
        margin-top: 0;
    }

    .contact-page-title {
        font-size: 1.8rem;
    }

    .contact-page-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-page-image-placeholder {
        height: 250px;
        margin-top: 2rem;
    }

    .contact-page-image-placeholder h3 {
        font-size: 1.5rem;
    }

    .contact-page-info-card {
        padding: 1.5rem;
    }

    .contact-page-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-page-info-label {
        font-size: 0.8rem;
    }

    .contact-page-info-value {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 30px 1rem;
    }

    .contact-page-label {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .contact-page-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-page-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .contact-page-form {
        gap: 1rem;
    }

    .contact-page-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .contact-page-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-page-image-placeholder {
        height: 200px;
        margin-top: 1.5rem;
    }

    .contact-page-image-placeholder h3 {
        font-size: 1.2rem;
    }

    .contact-page-info-card {
        padding: 1.25rem;
    }

    .contact-page-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-page-info-label {
        font-size: 0.75rem;
    }

    .contact-page-info-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .contact-page-title {
        font-size: 1.3rem;
    }

    .contact-page-description {
        font-size: 0.8rem;
    }

    .contact-page-image-placeholder {
        height: 180px;
    }

    .contact-page-image-placeholder h3 {
        font-size: 1rem;
    }

    .contact-page-info-card {
        padding: 1rem;
        gap: 1rem;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .contact-page-title {
        font-size: 1.6rem;
    }
}



/* ========================================
   BREADCRUMB SECTION BUTTONS
   ======================================== */
.breadcrumb-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-breadcrumb i {
    font-size: 1.1rem;
}

.btn-breadcrumb-primary {
    background: linear-gradient(135deg, #EBE8BD 0%, #d9d5a3 100%);
    color: #07434A;
    border-color: #EBE8BD;
}

.btn-breadcrumb-primary:hover {
    background: linear-gradient(135deg, #d9d5a3 0%, #EBE8BD 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 232, 189, 0.4);
    color: #07434A;
}

.btn-breadcrumb-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-breadcrumb-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

/* Responsive Breadcrumb Buttons */
@media (max-width: 1024px) {
    .breadcrumb-buttons {
        gap: 1.2rem;
        margin-top: 1.8rem;
    }

    .btn-breadcrumb {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .project-breadcrumb {
        height: 375px;
    }

    .btn-breadcrumb {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-breadcrumb i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-breadcrumb {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-breadcrumb i {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .breadcrumb-buttons {
        gap: 0.6rem;
        padding: 0 0.8rem;
    }

    .btn-breadcrumb {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .btn-breadcrumb i {
        font-size: 0.85rem;
    }
}
/* ========================================
   UNITS SECTION MOBILE CENTERING
   ======================================== */
@media (max-width: 576px) {
    .units-section .row:first-child {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .units-section .row:first-child .col-lg-6 {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .units-section .explore-more {
        width: 75% !important;
        margin-inline-start: auto;
        margin-inline-end: auto;
        justify-content: center;
    }

    .units-section .row:nth-child(2) {
        flex-direction: column;
        align-items: center;
    }

    .units-section .row:nth-child(2) .col-lg-6 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .units-filter-container {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
        margin-bottom: 0rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .floor-tabs-container {
        width: 100%;
    }

    .floor-tabs {
        justify-content: center;
        gap: 0.5rem;
        padding: 0.4rem;
        width: 80%;
    }

    .filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        border-width: 1.5px;
    }

    .floor-tabs {
        gap: 0.35rem;
        padding: 0.3rem;
        flex-wrap: wrap;
    }

    .floor-tab {
        padding: 0.5rem .8rem;
        font-size: 0.85rem;
        font-weight: 500;
        flex: 1;
        min-width: calc(33.333% - 0.25rem);
    }

    .units-filter-container {
        gap: 0.35rem;
    }
}


/* project styling -------------------------- */

/* ========================================
   PROJECT SLIDER SECTION
   ======================================== */
.project-slider-section {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #F9F9F9 0%, rgba(154, 185, 165, 0.05) 100%);
}

.project-slider-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.project-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.project-slider-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

.project-slider-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ========================================
   MAIN SLIDER
   ======================================== */
.project-slider-main {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-item.active {
    opacity: 1;
    z-index: 10;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 3rem 2rem;
    color: white;
    animation: slideUp 0.6s ease-in-out;
}

.slider-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.slider-caption p {
    font-size: 1rem;
    color: #E8E8E8;
    margin: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   SLIDER CONTROLS
   ======================================== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* ========================================
   SLIDER INDICATORS
   ======================================== */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90%;
    padding: 0 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   THUMBNAIL GALLERY
   ======================================== */
.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(7, 67, 74, 0.3);
}

@media (max-width: 1024px) {
    .project-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .slider-container {
        height: 400px;
    }

    .slider-caption {
        padding: 2rem;
    }

    .slider-caption h3 {
        font-size: 1.4rem;
    }

    .slider-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .project-slider-section {
        padding: 3rem 0;
    }

    .project-slider-title {
        font-size: 1.8rem;
    }

    .project-slider-subtitle {
        font-size: 1rem;
    }

    .project-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .thumbnail-item {
        height: 100px;
    }

    .slider-container {
        height: 300px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .slider-caption {
        padding: 1.5rem 1rem;
    }

    .slider-caption h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .slider-caption p {
        font-size: 0.8rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}

@media (max-width: 576px) {
    .project-slider-wrapper {
        gap: 1rem;
    }

    .project-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail-item {
        height: 80px;
    }

    .slider-container {
        height: 250px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-prev {
        left: 0.5rem;
    }

    .slider-next {
        right: 0.5rem;
    }

    .slider-caption {
        display: none;
    }

    .slider-caption h3 {
        font-size: 1rem;
    }

    .slider-caption p {
        font-size: 0.75rem;
        display: none;
    }

    .slider-indicators {
        gap: 0.4rem;
        width: 90%;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }
}

/* ========================================
   PROJECT PLANS SECTION - مخططات المشروع
   ======================================== */
.project-plans-section {
    padding: 5rem 0;
    background: white;
}

.project-plans-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-plans-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.project-plans-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0rem;
}

.project-plans-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Plans Grid */
.project-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Plan Category Title */
.plan-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.plan-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Plans Column */
.plans-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Plan Card */
.plan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* Plan Image Wrapper */
.plan-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #F9F9F9;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plan-card:hover .plan-image {
    transform: scale(1.08);
}

/* Plan Overlay */
.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 67, 74, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.plan-card:hover .plan-overlay {
    opacity: 1;
}

.plan-overlay i {
    font-size: 1.75rem;
    color: white;
}

/* Plan Content */
.plan-content {
    padding: 1.6rem;
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Plan Specs */
.plan-specs {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E8E8;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.spec-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .project-plans-title {
        font-size: 2rem;
    }

    .plan-image-wrapper {
        height: 220px;
    }

    .plan-content {
        padding: 1.5rem;
    }

    .plan-category-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .project-plans-section {
        padding: 3rem 0;
    }

    .project-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-plans-title {
        font-size: 1.8rem;
    }

    .project-plans-subtitle {
        font-size: 1.05rem;
    }

    .project-plans-description {
        font-size: 1rem;
    }

    .plan-image-wrapper {
        height: 200px;
    }

    .plan-card {
        border-radius: 10px;
    }

    .plan-overlay i {
        font-size: 2rem;
    }

    .plan-category-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .plans-column {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .project-plans-section {
        padding: 2rem 0;
    }

    .project-plans-title {
        font-size: 1.5rem;
    }

    .project-plans-subtitle {
        font-size: 1rem;
    }

    .project-plans-description {
        font-size: 0.95rem;
    }

    .plan-image-wrapper {
        height: 180px;
    }

    .plan-content {
        padding: 1.2rem;
    }

    .plan-title {
        font-size: 1.1rem;
    }

    .plan-description {
        font-size: 0.9rem;
    }

    .plan-specs {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .spec-item {
        font-size: 0.85rem;
    }

    .plan-category-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .plans-column {
        gap: 1.2rem;
    }
}

/* ========================================
   PLAN ZOOM MODAL
   ======================================== */
.plan-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-zoom-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-zoom-content {
    position: relative;
    text-align: center;
    animation: zoomIn 0.4s ease;
}

.image-zoom-image {
    height: 500px;
    width: 700px;
    object-fit: cover;
    border-radius: 8px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .image-zoom-image {
        max-height: 80vh;
    }

    .image-zoom-image {
        height: 350px;
        width: 350px;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .image-zoom-content {
        width: 95%;
    }

    .image-zoom-image {
        max-height: 75vh;
    }
}

.plan-zoom-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.plan-zoom-wrapper {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 20px;
}

.plan-zoom-image {
    max-width: 85%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: contain;
    margin: 40px auto;
}

.plan-zoom-title {
    background: linear-gradient(135deg, #07434A 0%, #0a5b65 100%);
    padding: 1.5rem;
    text-align: center;
}

.plan-zoom-title h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Close Button */
.plan-zoom-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #07434A;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[dir="rtl"] .plan-zoom-close {
    right: auto;
    left: 1.5rem;
}

.plan-zoom-close:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Keyboard & Click to Close */
.plan-zoom-modal.active {
    cursor: pointer;
}

.plan-zoom-content {
    cursor: default;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plan-zoom-content {
        width: 95%;
    }

    .plan-zoom-close {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 1rem;
        right: 1rem;
    }

    [dir="rtl"] .plan-zoom-close {
        right: auto;
        left: 1rem;
    }

    .plan-zoom-title h3 {
        font-size: 1.3rem;
    }

    .plan-zoom-title {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .plan-zoom-content {
        width: 98%;
    }

    .plan-zoom-image {
        max-height: 60vh;
    }

    .plan-zoom-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    [dir="rtl"] .plan-zoom-close {
        right: auto;
        left: 0.8rem;
    }

    .plan-zoom-title h3 {
        font-size: 1.1rem;
    }

    .plan-zoom-title {
        padding: 0.8rem;
    }
}

/* ========================================
   VALUES & MISSION SECTIONS (ABOUT PAGE)
   ======================================== */

.values-section {
    background-color: #f9f9f9;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(7, 67, 74, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    min-height: 270px;
}

@media (max-width: 767px) {
    .value-card {
        min-height: 80px;
    }
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(7, 67, 74, 0.15);
    border-color: #07434A;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #07434A 0%, #0a5a63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #EBE8BD;
}

.value-card h3 {
    color: #07434A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background-color: white;
}

.mission-card {
    background: #F9F9F9;
    padding: 25px;
    border-inline-start: 4px solid #07434A;
    border-radius: 6px;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #07434A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #E8E8E8;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list i {
    color: #07434A;
    margin-inline-end: 12px;
    font-size: 1rem;
}

/* Responsive Design for Values & Mission */
@media (max-width: 768px) {
    .value-card {
        padding: 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .mission-card h3 {
        font-size: 1.1rem;
    }

    .highlights-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}


html, body {
    overflow-x: hidden !important;
}

.whatsapp-icon {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 100;

    img {
        width: 54px;
        height: 54px;
    }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .whatsapp-icon {
        bottom: 20px;

        img {
            width: 40px;
            height: 40px;
        }
    }
}
[dir="rtl"] .whatsapp-icon {
    right: auto;
    left: 20px;
}


/* ********************************************************************************************************************************************************* */



/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        #1a1a1a 100%
    );
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d17428" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.why-choose-us .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.why-choose-us .section-header::before {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}

.why-choose-us .section-title {
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 550px;
}

.why-choose-us .section-subtitle::before {
    color: rgba(255, 255, 255, 0.6);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(209, 116, 40, 0.1) 50%,
        transparent 100%
    );
    transition: all 0.6s ease;
}

.why-choose-item:hover::before {
    left: 100%;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(209, 116, 40, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(209, 116, 40, 0.15);
    line-height: 1;
    z-index: 1;
}

[dir="rtl"] .why-choose-number {
    right: auto;
    left: 20px;
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(209, 116, 40, 0.3);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(209, 116, 40, 0.4);
}

.why-choose-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.why-choose-item:hover h3 {
    color: var(--primary-color);
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.why-choose-item:nth-child(1) .why-choose-number::before {
    content: "01";
}
.why-choose-item:nth-child(2) .why-choose-number::before {
    content: "02";
}
.why-choose-item:nth-child(3) .why-choose-number::before {
    content: "03";
}
.why-choose-item:nth-child(4) .why-choose-number::before {
    content: "04";
}
.why-choose-item:nth-child(5) .why-choose-number::before {
    content: "05";
}
.why-choose-item:nth-child(6) .why-choose-number::before {
    content: "06";
}

/* Why Choose Us Responsive Styles */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .why-choose-item {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 968px) {
    .why-choose-us {
        padding: 6rem 0;
    }

    .why-choose-us .section-title {
        font-size: 2.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-item {
        padding: 2.5rem 2rem;
    }

    .why-choose-number {
        font-size: 3rem;
        top: -5px;
        right: 15px;
    }

    .why-choose-icon {
        width: 55px;
        height: 55px;
    }

    .why-choose-icon i {
        font-size: 1.3rem;
    }

    .why-choose-item h3 {
        font-size: 1.4rem;
    }

    .why-choose-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 5rem 0;
    }

    .why-choose-us .section-title {
        font-size: 2rem;
    }

    .why-choose-us .section-subtitle {
        font-size: 1rem;
    }

    .why-choose-item {
        padding: 2rem 1.5rem;
    }

    .why-choose-number {
        font-size: 2.5rem;
        top: 0;
        right: 10px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .why-choose-icon i {
        font-size: 1.2rem;
    }

    .why-choose-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .why-choose-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ========================================
   WHY CHOOSE NABTA - CUSTOM DARK STYLE
   ======================================== */
.why-choose-us .section-header::before {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
}
.why-choose-nabta-section {
    background: linear-gradient(135deg, #0f1f28 0%, #1a3d48 100%);
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
}

/* Animated background shapes */
.why-choose-nabta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 232, 189, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

.why-choose-nabta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 185, 165, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.why-choose-nabta-section .container {
    position: relative;
    z-index: 2;
}

/* Header Styles */
.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #EBE8BD 0%, #D4835B 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: slideInWidth 0.8s ease;
    box-shadow: 0 2px 8px rgba(235, 232, 189, 0.3);
}

@keyframes slideInWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Grid Layout */
.why-choose-nabta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Styles */
.nabta-choice-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(235, 232, 189, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Glass morphism effect */
.nabta-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 232, 189, 0.1) 0%, rgba(154, 185, 165, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.nabta-choice-card:hover::before {
    opacity: 1;
}

/* Hover effects */
.nabta-choice-card:hover {
    transform: translateY(-18px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 232, 189, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

/* Icon Circle - Hexagon shape */
.card-icon-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #07434A 0%, #0d5a63 50%, #9AB9A5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.9rem;
    color: #EBE8BD;
    box-shadow: 0 10px 30px rgba(7, 67, 74, 0.3),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.nabta-choice-card:hover .card-icon-circle {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #9AB9A5 0%, #07434A 50%, #D4835B 100%);
    box-shadow: 0 15px 45px rgba(7, 67, 74, 0.4),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Title Styles */
.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.nabta-choice-card:hover .card-title {
    color: #EBE8BD;
}

/* Description Styles */
.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.nabta-choice-card:hover .card-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-title {
        font-size: 2.5rem;
    }

    .why-choose-subtitle {
        font-size: 1.1rem;
    }

    .why-choose-nabta-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .nabta-choice-card {
        padding: 2rem 1.75rem;
        min-height: 360px;
    }

    .card-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 1.25rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-choose-nabta-section {
        padding: 4rem 0;
    }

    .why-choose-nabta-section::before {
        width: 400px;
        height: 400px;
        top: -20%;
        right: -15%;
    }

    .why-choose-nabta-section::after {
        width: 300px;
        height: 300px;
        bottom: 0;
        left: -10%;
    }

    .why-choose-header {
        margin-bottom: 3rem;
    }

    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .why-choose-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .header-underline {
        width: 70px;
    }

    .why-choose-nabta-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .nabta-choice-card {
        padding: 1.75rem 1.5rem;
        min-height: 340px;
        border-radius: 12px;
    }

    .card-icon-circle {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .card-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .nabta-choice-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .why-choose-nabta-section {
        padding: 3rem 0;
    }

    .why-choose-nabta-section::before {
        width: 300px;
        height: 300px;
        top: -10%;
        right: -20%;
    }

    .why-choose-nabta-section::after {
        width: 250px;
        height: 250px;
        bottom: -5%;
        left: -15%;
    }

    .why-choose-header {
        margin-bottom: 2rem;
    }

    .why-choose-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .why-choose-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .header-underline {
        width: 60px;
        height: 3px;
    }

    .why-choose-nabta-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .nabta-choice-card {
        padding: 1.5rem 1.25rem;
        min-height: auto;
    }

    .card-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .nabta-choice-card:hover {
        transform: translateY(-6px) scale(1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

.x-icon {
    fill: #EBE8BD;
    transition: fill 0.3s ease;
}

.x-icon-path:hover path {
    fill: #000;
}

/* ========================================
   DISABLE AOS ANIMATIONS ON MOBILE FOR UNITS SECTION
   ======================================== */
@media (max-width: 768px) {
    .units-section [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    .units-section [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}


/* ========================================
    NOTIFICATION SYSTEM
   ======================================== */

#success-message,
#error-message
{
    display: none;
    background-color: #68b67a; 
    padding: 15px 30px;
    width: fit-content;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    position: fixed;
    z-index: 100;
    top: 75px;
    right: 1%;

    p {
        margin: 0;
        color: #fff; 
    }
}

[dir="rtl"] #success-message,
[dir="rtl"] #error-message {
    right: auto;
    left: 1%;
}

#error-message {
    background-color: #ff4d4d;
}

.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spinner 0.75s linear infinite;
    vertical-align: middle;
}

@keyframes spinner {
    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   PRIVACY POLICY SECTION
   ======================================== */
.privacy-policy-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 1.5rem;
    font-weight: 600;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem 3rem 1rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-intro {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f1 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

[dir="rtl"] .privacy-intro {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.privacy-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.privacy-section {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: .25rem;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-section ul li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    transition: all 0.3s ease;
}

.privacy-section ul li {
    padding: 0.2rem 0 0.2rem 1.25rem;
}

[dir="rtl"] .privacy-section ul li {
    padding: 0.2rem 1.25rem 0.2rem 0;
}

.privacy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

[dir="rtl"] .privacy-section ul li::before {
    left: auto;
    right: 0;
}

.privacy-section ul li:hover {
    padding-left: 2.3rem;
    color: var(--primary-color);
}

[dir="rtl"] .privacy-section ul li:hover {
    padding-left: 0;
    padding-right: 1.75rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-section a:hover {
    border-bottom-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 6rem 0 3rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .privacy-intro {
        padding: 1.2rem;
    }

    .privacy-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .privacy-policy-section {
        padding: 5rem 0 2rem;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .privacy-section h2 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95rem;
    }
}