/* ============================
   رسم العقارية - ملف الستايل الرئيسي
   ============================ */

/* ====== متغيرات الألوان المستوحاة من اللوجو ====== */
:root {
    /* الألوان الرئيسية */
    --primary-gold: #B8985D;
    --secondary-gold: #D4AF77;
    --dark-gold: #9A7A45;
    --light-gold: #E8D9C0;
    --very-light-gold: #F5F1EA;

    /* الألوان المحايدة */
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;

    /* الخطوط */
    --font-primary: 'Cairo', 'Segoe UI', sans-serif;
    --font-secondary: 'Tajawal', 'Segoe UI', sans-serif;

    /* الظلال */
    --shadow-sm: 0 2px 8px rgba(184, 152, 93, 0.1);
    --shadow-md: 0 4px 16px rgba(184, 152, 93, 0.15);
    --shadow-lg: 0 8px 24px rgba(184, 152, 93, 0.2);
    --shadow-xl: 0 12px 32px rgba(184, 152, 93, 0.25);

    /* التحولات */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== إعدادات عامة ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
}

/* Fix horizontal scroll on mobile */
@media (max-width: 768px) {
    .container, .container-fluid {
        /* overflow-x: hidden; */
        max-width: 100%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Global section overflow fix */
section,
[class*="-section"] {
    overflow: hidden;
}

/* ====== التنسيق العام ====== */
.section-padding {
    padding: 100px 0;
}

.bg-light-gold {
    background-color: var(--very-light-gold);
}

/* ====== عناصر القسم ====== */
.section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
    margin-bottom: 25px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ====== شريط التنقل ====== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background-color: transparent !important;
    backdrop-filter: none;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
}

.navbar-brand img {
    filter: none;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--secondary-gold) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px !important;
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-gold);
    transition: var(--transition);
    transform: translateX(50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--secondary-gold) !important;
}

/* ====== الأزرار ====== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ====== قسم البطل (Hero) مع Slideshow ====== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-gray);
    overflow: hidden;
}

/* Hero Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-in-out, visibility 2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 15s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-3%, -2%);
    }
}

.hero-slide[data-slide="1"].active {
    animation: fadeZoomIn 2s ease-out;
}

@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slide[data-slide="2"].active {
    animation: sliceReveal 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes sliceReveal {
    0% {
        clip-path: polygon(0 0, 0 0,
                20% 0, 20% 0,
                40% 0, 40% 0,
                60% 0, 60% 0,
                80% 0, 80% 0,
                100% 0, 100% 0);
    }

    100% {
        clip-path: polygon(0 0, 0 100%,
                20% 0, 20% 100%,
                40% 0, 40% 100%,
                60% 0, 60% 100%,
                80% 0, 80% 100%,
                100% 0, 100% 100%);
    }
}

.hero-slide[data-slide="3"].active {
    animation: slideRevealZoom 2s ease-out forwards;
}

.hero-slide[data-slide="3"].active img {
    animation: kenBurnsZoomOut 15s ease-out forwards !important;
}

@keyframes slideRevealZoom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.3) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(2%, 1%);
    }
}

.hero-slide[data-slide="4"].active {
    animation: slideRevealZoomIn 2.2s ease-out forwards;
}

.hero-slide[data-slide="4"].active img {
    animation: kenBurnsZoomIn 18s ease-out forwards !important;
}

@keyframes slideRevealZoomIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(0.85) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -3%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(26, 26, 26, 0.65) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 152, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 152, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}



.hero-label {
    color: var(--secondary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: var(--font-secondary);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.3;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.85;
    animation: fadeInUp 1.4s ease-out;
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: fadeInUp 1.6s ease-out;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mobile Responsive */


@media (max-width: 768px) {
    .hero-label {
        font-size: 12px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ====== قسم من نحن (About) ====== */
.about-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--very-light-gold) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 119, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 152, 93, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image-container {
    position: relative;
    z-index: 1;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image-container:hover .about-image-main img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 16px;
    padding: 25px 35px;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.badge-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-header {
    margin-bottom: 30px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-description {
    margin-bottom: 30px;
}

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(187, 155, 84, 0.05) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(187, 155, 84, 0.15);
}

.value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(187, 155, 84, 0.35);
    transition: var(--transition);
    margin-bottom: 18px;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(187, 155, 84, 0.45);
}

.value-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.value-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Responsive for values grid */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        padding: 20px;
    }

    .value-item {
        padding: 20px 15px;
    }
}

.about-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ====== بطاقات المشاريع (Projects) ====== */
.project-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.project-badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.project-badge.bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view-project {
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-project:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.project-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--primary-gold);
    margin-left: 5px;
}

.project-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.project-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.project-features i {
    color: var(--primary-gold);
}

.btn-project-details {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-project-details:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: transparent;
}

/* ====== قسم الخدمات (Services Section) - تصميم رسمي ====== */
#services {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

/* Text gold color helper */
.text-gold {
    color: var(--primary-gold);
}

/* Services Header Enhancement */
#services .section-label {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

#services .section-title {
    font-size: 42px;
    position: relative;
    display: inline-block;
}

#services .section-description {
    font-size: 17px;
    max-width: 550px;
}

/* ====== Services Grid - Centered Icons Layout ====== */
.services-grid-new {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.services-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
}

.services-row:last-child {
    margin-bottom: 0;
}

/* Service Item */
.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 320px;
}

.service-item-right {
    flex-direction: row-reverse;
}

.service-item-right .service-text {
    text-align: left;
}

.service-item-left .service-text {
    text-align: right;
}

.service-text {
    flex: 1;
}

/* Icon Box - Formal Style */
.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.service-icon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 152, 93, 0.3);
}

/* Service Title */
.service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
    font-family: var(--font-secondary);
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--primary-gold);
}

/* Service Description */
.service-description {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Services - Tablet */
@media (max-width: 991px) {
    .services-grid-new {
        max-width: 100%;
        padding: 0 15px;
    }

    .services-row {
        gap: 20px;
    }

    .service-item {
        gap: 15px;
    }

    .service-icon-box {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 12px;
    }
}

/* Responsive Services - Mobile */
@media (max-width: 768px) {
    #services .section-title {
        font-size: 32px;
    }

    .services-grid-new {
        max-width: 100%;
        padding: 0 15px;
    }

    .services-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    /* Each service item: icon on left, text on right */
    .service-item {
        flex-direction: row;
        width: 100%;
        background: var(--white);
        padding: 18px 15px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        gap: 15px;
    }

    .service-item-right,
    .service-item-left {
        flex-direction: row;
    }

    .service-item-right .service-text,
    .service-item-left .service-text {
        text-align: right;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .service-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .service-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ====== لماذا نحن (Why Us) ====== */
.why-card {
    background-color: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--very-light-gold), var(--white));
}

.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    /* transform: rotate(360deg); */
    border-radius: 50%;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ====== التصنيفات (Categories) ====== */
.category-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--very-light-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 42px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.category-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-link:hover {
    gap: 15px;
    color: var(--dark-gold);
}

/* ====== الإحصائيات (Statistics) ====== */
.stats-section {
    position: relative;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.85)), url('../images/hero-villa.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 152, 93, 0.1), rgba(212, 175, 119, 0.1));
}

.stat-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 48px;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-percentage {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-gold);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

/* ====== آراء العملاء (Testimonials) ====== */
.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-right: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-right-color: var(--primary-gold);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-left: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 60px;
    color: var(--light-gold);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* ====== الشركاء (Partners) ====== */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--very-light-gold) 0%, var(--white) 50%, var(--very-light-gold) 100%);
    overflow: hidden;
    position: relative;
}

/* Decorative Elements */
.partners-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 152, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 152, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Partners Header */
.partners-header {
    text-align: center;
    padding: 0 0 50px;
    position: relative;
    z-index: 2;
}

.partners-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

/* ====== Partners Swiper Carousel ====== */
.partners-swiper-container {
    position: relative;
    width: 100%;
    padding: 30px 0 50px;
    overflow: hidden;
}

/* Fade overlays */
.partners-swiper-container::before,
.partners-swiper-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.partners-swiper-container::before {
    left: 0;
    background: linear-gradient(to right, var(--very-light-gold), transparent);
}

.partners-swiper-container::after {
    right: 0;
    background: linear-gradient(to left, var(--very-light-gold), transparent);
}

.partners-swiper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.partners-swiper:last-child {
    margin-bottom: 0;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partners-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--white);
    border: 1px solid rgba(184, 152, 93, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 152, 93, 0.2);
    border-color: rgba(184, 152, 93, 0.3);
}

.partner-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item.colored img {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-item.colored {
    border-color: rgba(184, 152, 93, 0.25);
}

/* ====== المدونة (Blog) ====== */
.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 12px;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-gold);
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 15px;
    color: var(--dark-gold);
}

/* ====== التواصل (Contact) - Formal KSA Style ====== */
.contact-section-new {
    position: relative;
    padding: 100px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(184, 152, 93, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-label {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-main-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.contact-main-title span {
    color: var(--primary-gold);
}

.contact-subtitle {
    font-size: 15px;
    color: var(--gray);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.contact-card-new {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    padding: 22px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-card-new:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--very-light-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.contact-badge {
    display: inline-block;
    background: var(--very-light-gold);
    color: var(--primary-gold);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}

.whatsapp-cta-new {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    padding: 18px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.whatsapp-cta-new:hover {
    background: #1fb855;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon-wrapper {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}

.whatsapp-text {
    flex: 1;
}

.whatsapp-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.whatsapp-text strong {
    display: block;
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
}

.whatsapp-arrow {
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.whatsapp-cta-new:hover .whatsapp-arrow {
    transform: translateX(-4px);
}

.contact-form-new {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    height: 100%;
}

.form-header {
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.input-group-new {
    position: relative;
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.input-group-new:focus-within {
    background: var(--white);
    border-color: var(--primary-gold);
}

.input-group-new i {
    color: #999;
    font-size: 15px;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.input-group-new:focus-within i {
    color: var(--primary-gold);
}

.input-group-new input,
.input-group-new select,
.input-group-new textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--dark-gray);
    outline: none;
}

.input-group-new select {
    cursor: pointer;
}

.textarea-group {
    align-items: flex-start;
    padding-top: 14px;
}

.textarea-group i {
    margin-top: 2px;
}

.textarea-group textarea {
    resize: none;
}

.btn-submit-new {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-new:hover {
    background: var(--dark-gold);
}

.btn-submit-new i {
    transition: transform 0.3s ease;
}

.btn-submit-new:hover i {
    transform: translateX(-4px);
}

@media (max-width: 991px) {
    .contact-section-new {
        padding: 80px 0;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .contact-form-new {
        padding: 30px;
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 26px;
    }

    .contact-card-new {
        padding: 18px;
    }

    .contact-form-new {
        padding: 24px;
    }

    .form-header h3 {
        font-size: 18px;
    }
}

/* ====== الفوتر (Footer) ====== */
.footer {
    background-color: rgba(26, 26, 26, 0.95);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(-5px);
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-gold);
}

/* ====== زر واتساب عائم ====== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ====== زر العودة للأعلى ====== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ====== شبكة روابط الفوتر ====== */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

}

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

.footer-links-column .footer-links li {
    margin-bottom: 10px;
}

.footer-links a i {
    margin-left: 8px;
    font-size: 12px;
    color: var(--secondary-gold);
}

/* ====== أخبار الفوتر ====== */
.footer-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateX(-5px);
}

.news-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-date {
    font-size: 12px;
    color: var(--secondary-gold);
    font-weight: 600;
}

.news-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    transition: var(--transition);
}

.news-item:hover .news-text {
    color: var(--white);
}

/* ====== قسم النشرة البريدية - Corporate Formal Style ====== */
.newsletter-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.newsletter-bg {
    background: #f5f5f5;
    position: relative;
    padding: 50px 0;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-text {
    color: var(--dark-gray);
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.newsletter-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 400;
    margin: 0;
}

.newsletter-form-wrapper {
    background: transparent;
    padding: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background: var(--white);
    font-size: 14px;
    color: var(--dark-gray);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.newsletter-btn {
    padding: 14px 32px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--dark-gold);
}

.newsletter-btn span {
    font-weight: 600;
    font-size: 14px;
}

.newsletter-btn i {
    font-size: 13px;
}

.newsletter-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsletter-note i {
    font-size: 11px;
    color: var(--primary-gold);
}

@media (max-width: 991px) {
    .newsletter-bg {
        padding: 40px 0;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-form-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border: 1px solid #ddd;
        border-radius: 6px;
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        border-radius: 6px;
        padding: 14px;
        justify-content: center;
    }
}

/* ====== تجاوبية الموبايل ====== */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .navbar-nav {
        padding-top: 20px;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stat-number {
        font-size: 42px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 25px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ====== New Projects Section Styles ====== */
.projects-section {
    background-color: var(--white);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 25px;
}

.projects-main-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-gray);
    margin: 0;
    position: relative;
}

.projects-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--dark-gray);
    border: 1px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.filter-btn.active {
    background-color: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

/* New Project Card Styles */
.project-card-new {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-new:hover .project-image-wrapper img {
    transform: scale(1.05);
}

/* Project Status Badge */
.project-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(76, 175, 80, 0.9);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.project-status.status-construction {
    background-color: rgba(255, 193, 7, 0.9);
    color: var(--dark-gray);
}

.project-status.status-booking {
    background-color: rgba(220, 53, 69, 0.9);
}

.project-status.status-sold {
    background-color: rgba(128, 0, 32, 0.9);
}

/* Bottom Info Bar */
.project-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 60px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    z-index: 2;
}

.project-basic-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.project-separator {
    color: rgba(255, 255, 255, 0.6);
}

.project-type {
    color: var(--secondary-gold);
}

.project-name {
    color: var(--white);
}

.project-arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(60, 60, 60, 0.85);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.project-arrow-btn:hover {
    background-color: rgba(80, 80, 80, 0.95);
    transform: scale(1.05);
}

.project-arrow-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.project-card-new.active .project-arrow-btn i {
    transform: rotate(135deg) !important;
}

/* Details Panel */
.project-details-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 80%, rgba(26, 26, 26, 0.85) 100%);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.project-card-new:hover:not(.hover-disabled) .project-details-panel,
.project-card-new.active .project-details-panel {
    transform: translateY(0);
}

.project-card-new:hover:not(.hover-disabled) .project-bottom-bar,
.project-card-new.active .project-bottom-bar {
    opacity: 0;
    pointer-events: none;
}

.project-card-new:hover:not(.hover-disabled) .project-arrow-btn i,
.project-card-new.active .project-arrow-btn i {
    transform: rotate(135deg);
}

.details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.company-logo {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.project-title-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.project-type-detail {
    color: var(--secondary-gold);
}

.project-name-detail {
    color: var(--white);
}

.details-price {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.details-price i {
    color: var(--secondary-gold);
    font-size: 18px;
}

.details-features {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

.feature-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.feature-value {
    font-weight: 600;
}

/* View All Projects Button */
.view-all-projects {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray), #2a2a2a);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-view-all:hover {
    color: var(--white);
    border-color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

.btn-view-all:hover::before {
    width: 100%;
}

.btn-view-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(-5px);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(-10px);
    }
}

/* Responsive for Projects Section */
@media (max-width: 991px) {
    .projects-header {
        flex-direction: column;
        text-align: center;
    }

    .projects-main-title {
        font-size: 32px;
    }

    .projects-filter {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .project-image-wrapper {
        height: 350px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .project-basic-info {
        font-size: 14px;
    }

    .project-title-info {
        font-size: 15px;
    }

    .details-features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature-item {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .projects-main-title {
        font-size: 28px;
    }

    .project-image-wrapper {
        height: 300px;
    }

    .project-arrow-btn {
        width: 40px;
        height: 40px;
    }

    .company-logo {
        width: 40px;
        height: 40px;
    }

    .btn-view-all {
        padding: 14px 30px;
        font-size: 14px;
    }

    .view-all-projects {
        margin-top: 40px;
    }

    /* Partners Swiper Responsive */
    .partners-header {
        padding: 40px 0 25px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-swiper-container {
        padding: 15px 0 40px;
    }

    .partner-item {
        width: 140px;
        height: 70px;
        padding: 12px 18px;
    }

    .partner-item img {
        max-height: 40px;
    }

    .partners-swiper-container::before,
    .partners-swiper-container::after {
        width: 50px;
    }

    .partners-section::before,
    .partners-section::after {
        height: 50px;
    }
}

/* ====== Partners Swiper - Extra Small Screens ====== */
@media (max-width: 480px) {
    .partners-header {
        padding: 30px 0 20px;
    }

    .partners-title {
        font-size: 24px;
    }

    .partners-swiper-container {
        padding: 10px 0 30px;
    }

    .partner-item {
        width: 110px;
        height: 55px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .partner-item img {
        max-height: 32px;
    }

    .partners-swiper-container::before,
    .partners-swiper-container::after {
        width: 25px;
    }
}

/* ====== Responsive Styles for Services Section ====== */
@media (max-width: 991px) {
    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
        margin-bottom: 25px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 85px;
        height: 85px;
        font-size: 36px;
        margin-bottom: 22px;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 14.5px;
        line-height: 1.8;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 19px;
    }

    .service-description {
        font-size: 14px;
    }
}

/* ====== Navbar Toggler Styles ====== */
.navbar-toggler {
    border: 2px solid var(--secondary-gold);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(184, 152, 93, 0.3);
    outline: none;
}

.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='%23D4AF77' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--secondary-gold);
}

.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='%23D4AF77' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== Project Card Link Styles ====== */
.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.project-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* ====== News Item Link Styles ====== */
.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.news-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.news-item-link:hover .news-item {
    transform: translateX(-5px);
}

.news-item-link:hover .news-text {
    color: var(--secondary-gold);
}

/* ====== Mobile Sidebar Menu ====== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--secondary-gold);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(184, 152, 93, 0.1);
}

.mobile-menu-toggle .toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Container */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--dark-gold) 50%, var(--secondary-gold) 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    visibility: hidden;
}

.mobile-sidebar.active {
    right: 0;
    visibility: visible;
}

/* Sidebar Header */
.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sidebar-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

/* Mobile sidebar header logo - white filter */
.mobile-sidebar-header .mobile-sidebar-logo img {
    filter: brightness(0) invert(1);
}

.mobile-sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Sidebar Navigation */
.mobile-sidebar-nav {
    flex: 1;
    padding: 25px 0;
    overflow-y: auto;
}

.mobile-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar-nav li {
    margin: 0;
}

.mobile-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
}

.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.12);
    border-right-color: var(--white);
}

.mobile-sidebar-nav a i {
    width: 24px;
    font-size: 18px;
    text-align: center;
    opacity: 0.85;
}

.mobile-sidebar-nav a span {
    flex: 1;
}

/* Sidebar Footer */
.mobile-sidebar-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.mobile-sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mobile-sidebar-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-sidebar-social a:hover {
    background: var(--white);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.mobile-sidebar-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Hide default Bootstrap toggler on mobile */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* ============================
   رسم العقارية - صفحة تفاصيل المشروع
   Formal Corporate Design v3.0
   ============================ */

/* ====== CSS Variables - Formal Corporate Theme ====== */
:root {
    --gradient-gold: linear-gradient(180deg, var(--primary-gold), var(--secondary-gold));
    --gradient-dark: linear-gradient(180deg, #1a1a2e, #16213e);
    --gradient-formal: linear-gradient(180deg, #f8f9fa, #e9ecef);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-formal: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-formal: 1px solid rgba(0, 0, 0, 0.08);
    --border-radius-lg: 8px;
    --border-radius-md: 6px;
    --border-radius-sm: 4px;
    --formal-dark: #1a1a2e;
    --formal-secondary: #2d3748;
    --formal-muted: #718096;
}

/* ====== Navbar Override for Project Details - Formal ====== */
.project-navbar {
    background-color: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.project-navbar .navbar-brand img {
    filter: none;
    transition: opacity 0.2s ease;
}

.project-navbar .navbar-brand:hover img {
    opacity: 0.9;
}

.project-navbar .nav-link {
    color: var(--formal-secondary) !important;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.01em;
}

.project-navbar .nav-link:hover,
.project-navbar .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Search Box - Formal */
.nav-search {
    display: flex;
    align-items: center;
    background-color: #f7fafc;
    border-radius: 4px;
    padding: 4px 12px;
    margin-right: 20px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.nav-search:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(184, 152, 93, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-btn {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-gold);
}

/* ====== Breadcrumb Section - Formal Corporate ====== */
.breadcrumb-section {
    padding: 95px 0 0;
    background: #f8fafc;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-section::before {
    display: none;
}

.breadcrumb-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb-section .container::after {
    display: none;
}

.breadcrumb {
    margin: 0;
    padding: 8px 16px;
    /* background: #ffffff; */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 4px;
    font-size: 13px;
    /* border: 1px solid #e2e8f0; */
    box-shadow: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--formal-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a i {
    color: var(--primary-gold);
    font-size: 12px;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--formal-dark);
    font-weight: 600;
    position: relative;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #cbd5e0;
    font-size: 10px;
    padding: 0 10px;
}

/* Share Container - Interactive Design */
.share-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Share Toggle Button */
.share-toggle-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(184, 152, 93, 0.3);
    position: relative;
    z-index: 10;
}

.share-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 4px 20px rgba(184, 152, 93, 0.5);
}

.share-toggle-btn.active {
    transform: scale(1.1) rotate(180deg);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

/* Share Menu */
.share-menu {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px 55px 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid #e2e8f0;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    left: 50px;
    pointer-events: all;
}

/* Share Menu Buttons */
.share-menu-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7fafc;
    color: var(--formal-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.share-menu-btn span {
    position: absolute;
    right: 100%;
    white-space: nowrap;
    background: var(--formal-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.share-menu-btn span::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--formal-dark);
}

.share-menu-btn:hover span {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 8px);
}

.share-menu-btn:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-menu-btn[data-platform="twitter"]:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8ed9);
    color: var(--white);
    border-color: #1DA1F2;
}

.share-menu-btn[data-platform="facebook"]:hover {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: var(--white);
    border-color: #4267B2;
}

.share-menu-btn[data-platform="whatsapp"]:hover {
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: var(--white);
    border-color: #25D366;
}

.share-menu-btn[data-platform="copy"]:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: var(--primary-gold);
}

/* Staggered animation for menu items */
.share-menu.active .share-menu-btn {
    animation: slideInShare 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.share-menu.active .share-menu-btn:nth-child(1) {
    animation-delay: 0.05s;
}

.share-menu.active .share-menu-btn:nth-child(2) {
    animation-delay: 0.1s;
}

.share-menu.active .share-menu-btn:nth-child(3) {
    animation-delay: 0.15s;
}

.share-menu.active .share-menu-btn:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes slideInShare {
    from {
        opacity: 0;
        transform: translateX(-10px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .share-menu {
        padding: 6px 50px 6px 10px;
        gap: 6px;
    }

    .share-toggle-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .share-menu-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .share-menu.active {
        left: 45px;
    }

    /* Hide tooltips on mobile */
    .share-menu-btn span {
        display: none;
    }
}

/* Share Buttons on Slider - Left Side */
.share-container.slider-share {
    position: absolute;
    left: 20px;
    top: 10px;
    /* transform: translateY(-50%); */
    z-index: 100;
    flex-direction: column;
    gap: 10px;
}

.share-container.slider-share .share-toggle-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-gold);
}

.share-container.slider-share .share-toggle-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.share-container.slider-share .share-menu {
    position: absolute;
    left: 50px !important;
    top: 20px;
    /* transform: none; */
    /* flex-direction: column; */
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.share-container.slider-share .share-menu.active {
    left: 50px !important;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
}

.share-container.slider-share .share-menu-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
}

.share-container.slider-share .share-menu-btn[data-platform="twitter"]:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8ed9);
    color: var(--white);
    border-color: #1DA1F2;
}

.share-container.slider-share .share-menu-btn[data-platform="facebook"]:hover {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: var(--white);
    border-color: #4267B2;
}

.share-container.slider-share .share-menu-btn[data-platform="whatsapp"]:hover {
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: var(--white);
    border-color: #25D366;
}

.share-container.slider-share .share-menu-btn[data-platform="copy"]:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border-color: var(--primary-gold);
}

.share-container.slider-share .share-menu-btn span {
    right: auto;
    left: calc(100% + 8px);
}

.share-container.slider-share .share-menu-btn span::after {
    left: auto;
    right: -4px;
    border-left: 4px solid var(--formal-dark);
    border-right: none;
}

@media (max-width: 768px) {
    .share-container.slider-share {
        left: 10px;
        z-index: 1000;
    }
    
    .share-container.slider-share .share-toggle-btn {
        width: 40px;
        height: 40px;
    }
    
    .share-container.slider-share .share-menu {
        z-index: 1001;
    }
    
    .share-container.slider-share .share-menu-btn {
        width: 36px;
        height: 36px;
    }
}

/* ====== Project Hero Section ====== */
.project-hero-section {
    /* margin-top: 80px; */
    min-height: calc(100vh - 80px);
}

/* Project Sidebar - Formal */
.project-sidebar {
    background: #ffffff;
    height: 100%;
    min-height: calc(100vh - 80px);
    padding: 30px 25px;
    border-left: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-logo img {
    height: 60px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-name-sidebar {
    font-size: 20px;
    font-weight: 700;
    color: var(--formal-dark);
    text-align: center;
    margin: 0;
    letter-spacing: -0.01em;
}

.project-quick-info {
    display: flex;
    /* flex-direction: column; */
    /* gap: 12px; */
    justify-content: space-between;
}

.project-quick-info .info-item {
    display: flex;
    align-items: center;
    background: white;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.project-quick-info .info-item i {
    color: var(--primary-gold);
    width: 20px;
    font-size: 20px;
}

.project-stats-sidebar {
    display: flex;
    gap: 10px;
    row-gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    justify-content: space-between;
    flex-wrap: wrap;

}

.stat-item-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item-sidebar .stat-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-item-sidebar .stat-label {
    font-size: 11px;
    color: var(--gray);
}

.project-price-sidebar {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.project-price-sidebar .price-label {
    display: block;
    font-size: 11px;
    color: var(--formal-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-price-sidebar .price-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-gold);
}

.project-price-sidebar .price-value small {
    font-size: 14px;
    font-weight: 600;
}

.project-price-sidebar .price-note {
    display: block;
    font-size: 11px;
    color: var(--gray);
    margin-top: 5px;
}

/* Project Progress */
.project-progress {
    padding: 15px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.progress-header span:first-child {
    color: var(--gray);
}

.progress-value {
    font-weight: 700;
    color: #22c55e;
}

.progress-bar-container {
    height: 8px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Stat Icons */
.stat-item-sidebar .stat-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(184, 152, 93, 0.15), rgba(212, 175, 119, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-item-sidebar .stat-icon i {
    color: var(--primary-gold);
    font-size: 14px;
}

/* Virtual Tour Button */
.btn-virtual-tour {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-virtual-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    color: var(--white);
}

.btn-virtual-tour i {
    font-size: 16px;
}

/* Availability Stats */
.availability-stats {
    display: flex;
    gap: 8px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-top: 15px;
}

.avail-item {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
}

.avail-count {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 3px;
}

.avail-count.available {
    color: #22c55e;
}

.avail-count.reserved {
    color: #f59e0b;
}

.avail-count.sold {
    color: #ef4444;
}

.avail-label {
    font-size: 11px;
    color: var(--gray);
}

/* Project Status Badge */
.project-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

.project-status-badge.available {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.sidebar-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

.btn-primary-sidebar {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-sidebar {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    flex: 1;
}

.btn-outline-sidebar:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.sidebar-contact {
    display: flex;
    gap: 10px;
}

.contact-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background: #f5f5f5;
    color: var(--dark-gray);
}

.contact-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.contact-link.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-link.whatsapp:hover {
    background: #1ebe57;
}

/* Gallery Actions */
.gallery-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-action-btn {
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-action-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.image-counter {
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Slide Caption */
.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Thumbnail Label */
.thumb-label {
    display: block;
    text-align: center;
    font-size: 10px;
    color: var(--white);
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.thumb-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--white);
}

.thumb-more i {
    font-size: 18px;
    margin-bottom: 4px;
}

.thumb-more span {
    font-size: 11px;
    font-weight: 600;
}

/* Project Gallery */
.project-gallery-main {
    height: calc(100vh - 80px);
    position: relative;
}

/* Gallery Actions */
.gallery-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 12px;
    align-items: center;
}

.gallery-action-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.gallery-action-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.image-counter {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-gallery-swiper {
    height: 100%;
    position: relative;
}

.project-gallery-swiper .swiper-slide {
    position: relative;
}

.project-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Swiper Navigation Arrows */
.project-gallery-swiper .swiper-button-next,
.project-gallery-swiper .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.project-gallery-swiper .swiper-button-next:hover,
.project-gallery-swiper .swiper-button-prev:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.project-gallery-swiper .swiper-button-next::after,
.project-gallery-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}

/* Swiper Pagination */
.project-gallery-swiper .swiper-pagination {
    bottom: 100px !important;
    z-index: 50;
}

.project-gallery-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.project-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    transform: scale(1.3);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 60;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.thumb-item {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 9px;
    padding: 3px;
    text-align: center;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.thumb-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.thumb-more i {
    font-size: 16px;
    margin-bottom: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-actions {
        top: 10px;
        right: 10px;
        gap: 8px;
    }

    .gallery-action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .gallery-action-btn span:not(.image-counter) {
        display: none;
    }

    .image-counter {
        padding: 6px 10px;
        font-size: 11px;
    }

    .project-gallery-swiper .swiper-button-next,
    .project-gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .project-gallery-swiper .swiper-button-next::after,
    .project-gallery-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    /* Show pagination on mobile, hide thumbnails */
    .project-gallery-swiper .swiper-pagination {
        display: block;
        bottom: 20px !important;
    }

    .gallery-thumbnails {
        display: none;
    }

    .slide-caption {
        font-size: 14px;
        padding: 20px 15px 15px;
    }
}

@media (min-width: 769px) {

    /* Hide pagination on desktop, show thumbnails */
    .project-gallery-swiper .swiper-pagination {
        display: none;
    }
}


/* ====== Project Description Section - Formal ====== */
.project-description-section {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.description-card {
    background: #f8fafc;
    border-radius: 6px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.description-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.description-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--formal-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    letter-spacing: -0.01em;
}

.badge-location {
    background: var(--primary-gold);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.description-text {
    font-size: 15px;
    color: var(--formal-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ====== Units Section - Formal ====== */
.units-section {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header .section-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--formal-dark);
    letter-spacing: -0.01em;
}

.units-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.units-filter .filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--formal-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.units-filter .filter-btn:hover,
.units-filter .filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #ffffff;
}

/* Units Grid */
.units-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .units-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .units-grid {
        grid-template-columns: 1fr;
    }
}

/* Unit Card - Formal */
.unit-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-formal);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e0;
}

.unit-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 20px; */
}

.unit-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.unit-status.available {
    background: #22c55e;
    color: var(--white);
}

.unit-status.reserved {
    background: #f59e0b;
    color: var(--white);
}

.unit-status.sold {
    background: #ef4444;
    color: var(--white);
}

.unit-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--formal-dark);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.unit-info {
    padding: 20px;
}

.unit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.unit-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0;
}

.unit-type {
    font-size: 12px;
    color: var(--gray);
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 5px;
}

.unit-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.spec-item i {
    color: var(--primary-gold);
    font-size: 12px;
}

.unit-price {
    margin-bottom: 15px;
}

.unit-price .price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-gold);
}

.unit-price .currency {
    font-size: 14px;
    color: var(--gray);
}

.btn-view-unit {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-unit:hover {
    background: var(--primary-gold);
    color: #ffffff;
}

/* ====== Amenities Section - Formal ====== */
.amenities-section {
    padding: 50px 0;
    background: #ffffff;
    border: none;
}

.section-subtitle {
    color: var(--formal-muted);
    font-size: 14px;
    margin-top: 8px;
}

/* Amenities Column Wrapper - Minimal */
.amenities-column {
    background: transparent;
    border-radius: 0;
    padding: 0;
    height: auto;
    border: none;
    box-shadow: none;
}

.column-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 0;
    border: none;
    background: transparent;
    padding: 0 0 30px 0;
    border-radius: 0;
}

.column-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* Single Row Layout - Minimal */
.amenities-grid-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 50px;
}

@media (max-width: 1200px) {
    .amenities-grid-column {
        gap: 30px 40px;
    }
}

@media (max-width: 768px) {
    .amenities-grid-column {
        gap: 25px 35px;
    }
}

@media (max-width: 480px) {
    .amenities-grid-column {
        gap: 20px 30px;
    }
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    min-height: auto;
    justify-content: flex-start;
}

.amenity-item:hover .amenity-icon {
    /* transform: translateY(-5px) scale(1.05); */
    /* box-shadow: 0 8px 20px rgba(184, 152, 93, 0.15); */
}

.amenity-item:hover .amenity-name {
    color: var(--primary-gold);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.amenity-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-item:hover .amenity-image {
    box-shadow: 0 8px 20px rgba(184, 152, 93, 0.15);
}

.amenity-item:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 32px;
    color: #b8985d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-item:hover .amenity-icon i {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.amenity-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    font-family: 'Cairo', 'Tajawal', sans-serif;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.amenity-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    margin-top: 2px;
}

/* ====== Location Section - Formal ====== */
.location-section {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.map-container {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.location-badge {
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--formal-dark);
    border: 1px solid #e2e8f0;
}

.location-badge i {
    color: var(--primary-gold);
}

.location-info-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.location-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--formal-dark);
    letter-spacing: -0.01em;
}

.nearby-places {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.place-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.place-item:hover {
    background: linear-gradient(135deg, rgba(184, 152, 93, 0.1) 0%, rgba(212, 175, 119, 0.1) 100%);
}

.place-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.place-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.place-name {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.place-distance {
    font-size: 13px;
    color: var(--gray);
}

.btn-directions {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ====== Payment Section ====== */
.payment-section {
    padding: 80px 0;
    background: var(--white);
}

.payment-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.payment-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(184, 152, 93, 0.3);
}

.step-icon i {
    font-size: 30px;
    color: var(--white);
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-percentage {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-gold);
}

.step-label {
    font-size: 14px;
    color: var(--gray);
}

.payment-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .payment-connector {
        display: none;
    }

    .payment-timeline {
        flex-direction: column;
    }
}

.bank-support {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.bank-support p {
    color: var(--gray);
    margin-bottom: 20px;
}

.bank-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bank-logos img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.bank-logos img:hover {
    opacity: 1;
}

/* ====== Quick Navigation Tabs - Formal ====== */
.quick-nav-section {
    position: sticky;
    top: 80px;
    background: #ffffff;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
}

.quick-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--formal-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-tab:hover {
    color: var(--primary-gold);
    background: #f8fafc;
}

.nav-tab.active {
    background: var(--primary-gold);
    color: #ffffff;
}

.nav-tab i {
    font-size: 14px;
}

/* ====== Video Section - Compact ====== */
.video-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.video-section .section-header {
    margin-bottom: 24px;
}

.video-section .section-title {
    color: var(--formal-dark);
    font-size: 22px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #FF0000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.play-button i {
    font-size: 28px;
    color: var(--white);
    margin-right: -3px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.video-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.youtube-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.youtube-badge i {
    color: #FF0000;
    font-size: 16px;
}

/* ====== CTA Section - Compact Design ====== */
.cta-section-compact {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-compact .cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 152, 93, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 152, 93, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section-compact .cta-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 93, 0.5), transparent);
}

.cta-section-compact .cta-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 93, 0.5), transparent);
}

.cta-wrapper-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 152, 93, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.cta-title-compact h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    font-family: var(--font-secondary);
    white-space: nowrap;
}

.cta-buttons-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-buttons-row .cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), #D4AF77);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 152, 93, 0.35);
    white-space: nowrap;
}

.cta-buttons-row .cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 152, 93, 0.5);
    color: #fff;
}

.cta-buttons-row .cta-btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-buttons-row .cta-btn-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons-row .cta-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-buttons-row .cta-btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* CTA Compact Responsive */
@media (max-width: 991px) {
    .cta-wrapper-compact {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .cta-buttons-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section-compact {
        padding: 40px 0;
    }
    
    .cta-wrapper-compact {
        padding: 25px 20px;
    }
    
    .cta-title-compact h2 {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }
    
    .cta-buttons-row {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons-row .cta-btn-primary,
    .cta-buttons-row .cta-btn-contact,
    .cta-buttons-row .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Legacy CTA Section - Keep for backward compatibility */
.cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: var(--primary-gold);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 152, 93, 0.4);
    color: #ffffff;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hide CTA icon in compact mode */
.cta-icon {
    display: none;
}

/* Hide trust badges in compact mode */
.cta-trust-badges {
    display: none;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ====== FAQ Section - Modern Grid ====== */
.faq-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.faq-section .section-header {
    margin-bottom: 32px;
}

.faq-section .section-title {
    font-size: 22px;
}

.faq-section .section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    background: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 4px 16px rgba(184, 152, 93, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
    gap: 12px;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(184, 152, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-gold);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 18px 16px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 13px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* ====== Similar Projects Section - Formal ====== */
.similar-projects-section {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.similar-projects-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    gap: 10px;
    color: var(--secondary-gold);
}

.similar-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .similar-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .similar-projects-grid {
        grid-template-columns: 1fr;
    }
}

.similar-project-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-formal);
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.similar-project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e0;
}

.similar-project-card .project-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.similar-project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-project-card:hover .project-image img {
    transform: scale(1.05);
}

.similar-project-card .project-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--formal-dark);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.similar-project-card .project-badge.available {
    background: #22c55e;
}

.similar-project-card .project-info {
    padding: 20px;
}

.similar-project-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.similar-project-card .project-location {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.similar-project-card .project-location i {
    color: var(--primary-gold);
    margin-left: 5px;
}

.similar-project-card .project-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.similar-project-card .project-specs span {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.similar-project-card .project-specs i {
    color: var(--primary-gold);
}

.similar-project-card .project-price {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.similar-project-card .project-price strong {
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 800;
}

.similar-project-card .btn-view-project {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.similar-project-card .btn-view-project:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* ====== Footer - Formal ====== */
.footer {
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-brand img {
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

.footer h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-gold);
    letter-spacing: 0.02em;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-right: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* ====== Unit Modal V2 - New Design ====== */
.unit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 15px;
    overflow-y: auto;
}

.unit-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.unit-modal-v2 {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) #f0f0f0;
}

/* Webkit Scrollbar Styles */
.unit-modal-v2::-webkit-scrollbar {
    width: 6px;
}

.unit-modal-v2::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.unit-modal-v2::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.unit-modal-v2::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

.unit-modal-overlay.active .unit-modal-v2 {
    transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close-v2 {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #666;
    font-size: 14px;
}

.modal-close-v2:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Modal Header */
.modal-header-v2 {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.modal-title-v2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

/* Modal Body */
.modal-body-v2 {
    padding: 16px;
}

/* Top Section - Plans + Info Card */
.modal-top-section {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

/* Floor Plans Section */
.modal-plans-section {
    flex: 1;
    min-width: 0;
}

.plans-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    text-align: center;
}

.plans-gallery {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
}

.unit-gallery-swiper {
    border-radius: 10px;
    overflow: hidden;
}

.unit-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #f8f8f8;
}

.unit-gallery-swiper .swiper-button-next,
.unit-gallery-swiper .swiper-button-prev {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.9);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.unit-gallery-swiper .swiper-button-next::after,
.unit-gallery-swiper .swiper-button-prev::after {
    font-size: 12px;
    font-weight: bold;
}

/* Plans Thumbnails */
.plans-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.plan-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.plan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-thumb:hover {
    opacity: 1;
    border-color: #ddd;
}

.plan-thumb.active {
    border-color: var(--primary-gold);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(184, 152, 93, 0.3);
}

/* Unit Fullscreen Button */
.unit-fullscreen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 15px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unit-fullscreen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 152, 93, 0.4);
}

.unit-fullscreen-btn i {
    font-size: 16px;
}

/* Make swiper slides clickable for lightbox */
.unit-gallery-swiper .swiper-slide {
    cursor: pointer;
    position: relative;
}

.unit-gallery-swiper .swiper-slide::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 1;
    transition: all 0.3s ease;
}

.unit-gallery-swiper .swiper-slide:hover::after {
    background: rgba(184, 152, 93, 0.9);
    transform: scale(1.1);
}

/* Info Card */
.modal-info-card {
    width: 160px;
    flex-shrink: 0;
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #eee;
}

.info-card-logo {
    text-align: center;
    margin-bottom: 8px;
}

.info-card-logo img {
    height: 35px;
    object-fit: contain;
}

.info-card-project {
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.info-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-card-label {
    font-size: 10px;
    color: var(--gray);
}

.info-card-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-gray);
    padding: 3px 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.info-card-specs {
    margin-top: 10px;
}

.info-card-specs h5,
.info-card-features h5 {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    text-align: center;
}

.specs-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.spec-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px;
    min-width: 45px;
}

.spec-icon-item i {
    font-size: 14px;
    color: var(--primary-gold);
}

.spec-icon-item span {
    font-size: 8px;
    color: var(--gray);
    text-align: center;
    white-space: nowrap;
}

.info-card-features {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

/* Unit Badge */
.modal-unit-badge {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 8px;
    margin-bottom: 12px;
}

.unit-type-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
}

.unit-type-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-gray);
}

/* Stats Row */
.modal-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #eee;
}

.stat-item-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--dark-gray);
}

.stat-item-v2 i {
    font-size: 14px;
    color: var(--gray);
}

/* Description */
.modal-description-v2 {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}

/* Features Section */
.modal-features-section {
    margin-bottom: 16px;
}

.modal-features-section h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    text-align: center;
}

.features-icons-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.feature-icon-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.7;
}

.feature-icon-item span {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
}

.feature-icon-item.feature-with-image .feature-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon-item.feature-with-image .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Price */
.modal-price-v2 {
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 10px;
    margin-bottom: 16px;
}

.price-label-v2 {
    font-size: 13px;
    color: var(--gray);
}

.price-value-v2 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-gold);
}

.price-value-v2 small {
    font-size: 14px;
    font-weight: 600;
}

/* Action Buttons */
.modal-actions-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary-action {
    width: 100%;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 107, 76, 0.35);
}

.secondary-btns {
    display: flex;
    gap: 10px;
}

.btn-secondary-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.btn-secondary-action.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-secondary-action.whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
}

.btn-secondary-action.call {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-secondary-action.call:hover {
    background: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

/* Mobile Responsive */
@media (max-width: 520px) {
    .unit-modal-v2 {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .modal-top-section {
        flex-direction: column;
    }
    
    .modal-info-card {
        width: 100%;
    }
    
    .modal-stats-row {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .stat-item-v2 {
        min-width: calc(33% - 10px);
        justify-content: center;
    }
    
    .features-icons-grid {
        gap: 12px;
    }
    
    .feature-icon-item {
        min-width: 60px;
    }
}

/* Legacy support */
.unit-modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.unit-modal-overlay.active .unit-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.modal-content {
    padding: 0;
}

.modal-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.modal-logo img {
    height: 35px;
}

.modal-body {
    padding: 16px;
}

/* Modal Price */
.modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(184, 152, 93, 0.1) 0%, rgba(212, 175, 119, 0.15) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-price .price-label {
    font-size: 14px;
    color: var(--gray);
}

.modal-price .price-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-gold);
}

.modal-price .price-value small {
    font-size: 16px;
    font-weight: 600;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-register-interest {
    width: 100%;
    background: linear-gradient(135deg, #1a3a2f, #234d3f);
    color: var(--white);
    border: none;
    padding: 16px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-register-interest:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 58, 47, 0.3);
}

.secondary-actions {
    display: flex;
    gap: 12px;
}

.btn-whatsapp-modal {
    flex: 1;
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-whatsapp-modal:hover {
    background: #1ebe57;
    color: var(--white);
}

.btn-call-modal {
    flex: 1;
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid #ddd;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-call-modal:hover {
    background: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

/* ====== WhatsApp Float Button ====== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ====== Scroll to Top Button ====== */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

/* ====== Lightbox ====== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--primary-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary-gold);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.lightbox-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
}

.lightbox-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lightbox-thumbnails img.active,
.lightbox-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ====== Interest Modal ====== */
.interest-modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.interest-modal-content .modal-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 20px 25px;
    border: none;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-header-content .modal-logo {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
}

.modal-header-content .modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.interest-modal-content .modal-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

.interest-modal-content .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.interest-modal-content .modal-body {
    padding: 30px 25px;
}

.interest-form .form-floating>label {
    color: var(--gray);
}

.interest-form .form-floating>label i {
    margin-left: 5px;
    color: var(--primary-gold);
}

.interest-form .form-control,
.interest-form .form-select {
    border: 2px solid #eee;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.interest-form .form-control:focus,
.interest-form .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(184, 152, 93, 0.1);
}

.interest-form .form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.interest-form .form-check-label a {
    color: var(--primary-gold);
}

.interest-modal-content .modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.btn-primary-modal {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 152, 93, 0.35);
    color: var(--white);
}

/* ====== WhatsApp Float Tooltip ====== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-gray);
}

/* ====== Small Screen - Icons Only for Quick Nav ====== */
@media (max-width: 768px) {
    .nav-search {
        display: none;
    }

    .project-gallery-main {
        height: 300px;
    }

    .gallery-actions {
        flex-wrap: wrap;
        gap: 8px;
        top: 15px;
        right: 15px;
    }

    .gallery-action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .quick-nav-tabs {
        justify-content: flex-start;
        padding: 10px;
    }

    .nav-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .nav-tab span {
        display: none;
    }

    /* Project Description - Mobile */
    .project-description-section {
        padding: 30px 0;
    }

    .description-card {
        padding: 20px;
        border-radius: 16px;
    }

    .description-header h2 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .badge-location {
        font-size: 12px;
        padding: 4px 12px;
    }

    .description-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .modal-body {
        padding: 15px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-info-row {
        flex-direction: column;
        gap: 10px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 991px) {
    .project-hero-section {
        /* margin-top: 70px; */
    }

    .project-sidebar {
        position: relative;
        top: 0;
        min-height: auto;
        border-left: none;
        border-bottom: 1px solid #eee;
    }

    .project-gallery-main {
        height: 400px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .gallery-thumbnails {
        display: none;
    }
}

@media (max-width: 480px) {
    .unit-modal {
        max-height: 100vh;
        border-radius: 0;
    }

    .secondary-actions {
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-top-btn {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   PROJECT SIDEBAR V2 - PREMIUM DESIGN
   ========================================== */

.project-sidebar-v2 {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}

/* Header Section */
.sidebar-header-v2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-header-v2 .header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(184, 152, 93, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 119, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sidebar-header-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184, 152, 93, 0.08) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.project-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(184, 152, 93, 0.3);
}

.project-badge-v2 i {
    font-size: 10px;
}

.project-name-v2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.project-location-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.project-location-v2 i {
    color: var(--primary-gold);
    font-size: 14px;
}

/* Body Section */
.sidebar-body-v2 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
}

/* Sidebar Title */
.sidebar-title-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4px;
}

.sidebar-title-v2 .title-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(184, 152, 93, 0.25);
}

.sidebar-title-v2 .title-icon i {
    color: #fff;
    font-size: 20px;
}

.sidebar-title-v2 .title-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-title-v2 .title-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.sidebar-title-v2 .title-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(184, 152, 93, 0.1);
    color: var(--primary-gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

/* Project Type Card - Minimal */
.project-type-card-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: none;
}

.type-icon-v2 {
    width: 44px;
    height: 44px;
    background: rgba(184, 152, 93, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.type-icon-v2 i {
    color: var(--primary-gold);
    font-size: 18px;
}

.type-info-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.type-label-v2 {
    font-size: 11px;
    color: #8c8c9e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-value-v2 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.type-units-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.units-number-v2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.units-label-v2 {
    font-size: 11px;
    color: #8c8c9e;
}

/* Location Card Variant - Minimal KSA */
.project-type-card-v2.location-card {
    background: #f8f9fa;
    border: none;
}

.project-type-card-v2.location-card .location-icon {
    /* background: rgba(14, 165, 165, 0.1); */
    box-shadow: none;
}

.project-type-card-v2.location-card .location-icon i {
    /* color: #0ea5a5; */
}

.project-type-card-v2.location-card .city-badge {
    background: #f8f9fa;
    box-shadow: none;
}

.project-type-card-v2.location-card .city-badge .units-number-v2 {
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.project-type-card-v2.location-card .city-badge .units-label-v2 {
    color: #9ca3af;
}

/* Price Card Variant - Minimal KSA */
.project-type-card-v2.price-card {
    background: #f8f9fa;
    border: none;
    position: relative;
    overflow: hidden;
}

.project-type-card-v2.price-card::before {
    display: none;
}

.project-type-card-v2.price-card .type-label-v2 {
    color: #9ca3af;
}

.project-type-card-v2.price-card .price-icon {
    background: rgba(184, 152, 93, 0.1);
    box-shadow: none;
}

.project-type-card-v2.price-card .price-icon i {
    color: var(--primary-gold);
}

.project-type-card-v2.price-card .price-value {
    font-size: 17px;
    color: #374151;
}

.project-type-card-v2.price-card .price-value small {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.project-type-card-v2.price-card .price-range-badge {
    background: #f8f9fa;
    box-shadow: none;
}

.project-type-card-v2.price-card .price-range-badge .units-number-v2 {
    color: var(--primary-gold);
    font-size: 15px;
}

.project-type-card-v2.price-card .price-range-badge .units-label-v2 {
    color: #9ca3af;
}

/* Installment Card - Minimal KSA */
.installment-card-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f8f9fa;
    border: none;
    border-radius: 12px;
    position: relative;
}

.installment-card-v2::after {
    display: none;
}

.installment-card-v2 .installment-icon {
    width: 42px;
    height: 42px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.installment-card-v2 .installment-icon i {
    color: #22c55e;
    font-size: 18px;
}

.installment-card-v2 .installment-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.installment-card-v2 .installment-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.installment-card-v2 .installment-value {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
}

.installment-card-v2 .installment-value small {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
}

/* Stats Grid */
.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.stat-card-v2:hover {
    background: #f3f4f6;
}

.stat-icon-v2 {
    width: 38px;
    height: 38px;
    background: rgba(184, 152, 93, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-v2 i {
    color: var(--primary-gold);
    font-size: 16px;
}

.stat-content-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label-v2 {
    font-size: 11px;
    color: #8c8c9e;
}

.stat-value-v2 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Price Section */
.price-section-v2 {
    background: linear-gradient(135deg, #fefcf7 0%, #fdf8ef 100%);
    border: 2px solid rgba(184, 152, 93, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.price-header-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #8c8c9e;
    font-size: 13px;
}

.price-header-v2 i {
    color: var(--primary-gold);
}

.price-display-v2 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price-amount-v2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.price-currency-v2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
}

.price-range-v2 {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.price-installment-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 152, 93, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: #5a5a6e;
}

.price-installment-v2 i {
    color: var(--primary-gold);
}

.price-installment-v2 strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Progress Section - Minimal KSA */
.progress-section-v2 {
    background: #f8f9fa;
    border: none;
    border-radius: 14px;
    padding: 16px;
    position: relative;
}

.progress-section-v2::before {
    display: none;
}

.progress-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.progress-title-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.progress-title-v2 i {
    color: #0ea5a5;
}

.progress-percentage-v2 {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}

.progress-bar-v2 {
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill-v2 {
    height: 100%;
    background: #0ea5a5;
    border-radius: 10px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-glow-v2 {
    display: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.2);
    }
}

.progress-info-v2 {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.progress-info-v2 i {
    color: #0ea5a5;
}

/* CTA Section */
.cta-section-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-v2 {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(184, 152, 93, 0.35);
    transition: all 0.3s ease;
}

.btn-primary-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 152, 93, 0.45);
}

.btn-content-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.btn-shine-v2 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-group-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.btn-secondary-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-v2:hover {
    background: #fff;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary-v2 i {
    font-size: 16px;
}

/* Contact Section */
.contact-section-v2 {
    border-top: 1px solid #eef0f5;
    padding-top: 20px;
}

.contact-title-v2 {
    font-size: 13px;
    color: #8c8c9e;
    text-align: center;
    margin-bottom: 14px;
}

.contact-buttons-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.contact-btn-v2.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: none;
}

.contact-btn-v2.phone:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.contact-btn-v2.phone .contact-icon-v2 {
    background: rgba(99, 102, 241, 0.1);
}

.contact-btn-v2.phone .contact-icon-v2 i {
    color: #6366f1;
}

.contact-btn-v2.whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: none;
}

.contact-btn-v2.whatsapp:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.contact-btn-v2.whatsapp .contact-icon-v2 {
    background: rgba(34, 197, 94, 0.1);
}

.contact-btn-v2.whatsapp .contact-icon-v2 i {
    color: #22c55e;
}

.contact-btn-v2.whatsapp .contact-label-v2 {
    color: #9ca3af;
}

.contact-btn-v2.whatsapp .contact-value-v2 {
    color: #374151;
}

.contact-icon-v2 {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-v2 i {
    color: #fff;
    font-size: 16px;
}

.contact-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-label-v2 {
    font-size: 10px;
    color: #8c8c9e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value-v2 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Trust Badges */
.trust-badges-v2 {
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: none;
}

.badge-item-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 12px;
    color: #6b7280;
}

.badge-item-v2:first-child i {
    color: #0ea5a5;
    font-size: 16px;
}

.badge-item-v2:last-child i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* Responsive Styles for Sidebar V2 */
@media (max-width: 991.98px) {
    .project-sidebar-v2 {
        position: relative;
        top: auto;
        min-height: auto;
        margin-top: 20px;
        border-radius: 16px;
    }

    .sidebar-header-v2 {
        padding: 24px 20px;
    }

    .project-name-v2 {
        font-size: 22px;
    }

    .sidebar-body-v2 {
        padding: 20px;
        gap: 16px;
    }

    .stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-amount-v2 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .project-sidebar-v2 {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sidebar-header-v2 {
        padding: 20px 16px;
    }

    .project-badge-v2 {
        padding: 5px 12px;
        font-size: 11px;
    }

    .project-name-v2 {
        font-size: 20px;
    }

    .sidebar-body-v2 {
        padding: 16px;
        gap: 14px;
    }

    .project-type-card-v2 {
        padding: 14px;
    }

    .type-icon-v2 {
        width: 42px;
        height: 42px;
    }

    .stats-grid-v2 {
        gap: 10px;
    }

    .stat-card-v2 {
        padding: 12px;
    }

    .stat-icon-v2 {
        width: 36px;
        height: 36px;
    }

    .price-section-v2 {
        padding: 16px;
    }

    .price-amount-v2 {
        font-size: 26px;
    }

    .btn-primary-v2 {
        padding: 14px 20px;
    }

    .btn-content-v2 {
        font-size: 15px;
    }

    .btn-secondary-v2 {
        padding: 12px 14px;
        font-size: 12px;
    }

    .contact-buttons-v2 {
        grid-template-columns: 1fr;
    }

    .trust-badges-v2 {
        flex-direction: column;
        gap: 8px;
    }
}


/* ====== Vision, Mission & Goals Section ====== */
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 152, 93, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 152, 93, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vm-section-label {
    display: inline-block;
    color: var(--secondary-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.vm-section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.vm-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
    margin: 0 auto 30px;
}

/* VM Card Styles */
.vm-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(184, 152, 93, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-15px);
    border-color: rgba(184, 152, 93, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(184, 152, 93, 0.15);
}

.vm-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 152, 93, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.vm-card:hover .vm-card-glow {
    opacity: 1;
}

.vm-card-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* VM Icon Styles */
.vm-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.vm-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 152, 93, 0.2) 0%, rgba(184, 152, 93, 0.05) 100%);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.vm-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(184, 152, 93, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(184, 152, 93, 0.5),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
}

/* VM Card Title */
.vm-card-title {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.vm-card:hover .vm-card-title {
    color: var(--secondary-gold);
}

/* VM Card Divider */
.vm-card-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* VM Card Text */
.vm-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin: 0;
}

/* VM Card Accent */
.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .vm-section-title {
        font-size: 36px;
    }
    
    .vm-card {
        padding: 35px 25px;
    }
    
    .vm-icon-wrapper {
        width: 85px;
        height: 85px;
    }
    
    .vm-icon {
        font-size: 30px;
    }
    
    .vm-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 70px 0;
    }
    
    .vm-section-title {
        font-size: 30px;
    }
    
    .vm-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .vm-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .vm-icon {
        font-size: 26px;
    }
    
    .vm-card-title {
        font-size: 20px;
    }
    
    .vm-card-text {
        font-size: 14px;
    }
}


/* ====== Formal Vision, Mission & Goals Section ====== */
.formal-vm-section {
    padding: 100px 0;
    background: #FAFAF8;
    position: relative;
}

.formal-vm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 93, 0.3), transparent);
}

.formal-vm-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 152, 93, 0.3), transparent);
}

/* Header */
.formal-vm-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.formal-header-line {
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.formal-header-line:last-child {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.formal-vm-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    letter-spacing: 1px;
}

/* Cards */
.formal-vm-card {
    background: var(--white);
    border: 1px solid #E8E4DC;
    padding: 45px 35px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.formal-vm-card::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
}

.formal-vm-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(184, 152, 93, 0.12);
    transform: translateY(-5px);
}

/* Number */
.formal-vm-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Icon */
.formal-vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.formal-vm-card:hover .formal-vm-icon {
    background: var(--primary-gold);
    color: var(--white);
}

/* Title */
.formal-vm-card-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* Separator */
.formal-vm-separator {
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto 20px;
}

/* Text */
.formal-vm-text {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .formal-vm-title {
        font-size: 28px;
    }
    
    .formal-vm-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .formal-vm-section {
        padding: 70px 0;
    }
    
    .formal-vm-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .formal-header-line {
        width: 80px;
        max-width: none;
    }
    
    .formal-header-line:first-child {
        background: linear-gradient(180deg, transparent, var(--primary-gold));
        width: 1px;
        height: 30px;
    }
    
    .formal-header-line:last-child {
        background: linear-gradient(180deg, var(--primary-gold), transparent);
        width: 1px;
        height: 30px;
    }
    
    .formal-vm-title {
        font-size: 24px;
    }
    
    .formal-vm-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .formal-vm-card-title {
        font-size: 20px;
    }
}


/* ====== Laravel Pagination Fix ====== */
.projects-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.projects-pagination .page-item {
    margin: 0;
}

.projects-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.projects-pagination .page-link:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: var(--white);
}

.projects-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-color: transparent;
    color: var(--white);
}

.projects-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.projects-pagination .page-link svg {
    width: 18px;
    height: 18px;
}

/* Hide text labels, show only icons/numbers */
.projects-pagination nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.projects-pagination nav > div:first-child {
    order: 2;
    color: var(--gray);
    font-size: 14px;
}

.projects-pagination nav > div:last-child {
    order: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-pagination .page-link {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .projects-pagination .page-link svg {
        width: 16px;
        height: 16px;
    }
}


/* ====== Custom Pagination ====== */
.custom-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-list .page-item {
    margin: 0;
}

.pagination-list .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-list .page-link:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.pagination-list .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-color: transparent;
    color: var(--white);
}

.pagination-list .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f8f8;
}

.pagination-list .prev-btn,
.pagination-list .next-btn {
    font-size: 14px;
}

.pagination-list .dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 5px;
}

.pagination-info {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .pagination-list .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
        padding: 0 10px;
    }
    
    .pagination-list {
        gap: 5px;
    }
}


/* ====== Interest Modal V2 Styles ====== */
.interest-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.interest-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.interest-modal-container {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.interest-modal-overlay.active .interest-modal-container {
    transform: translateY(0) scale(1);
}

.interest-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.interest-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.interest-modal-header {
    background: linear-gradient(135deg, #b8985d 0%, #b17810b8 100%);
    color: #fff;
    padding: 25px 35px;
    text-align: center;
    border-radius: 10px 24px 0 0;
    position: relative;
}

.interest-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.interest-modal-body {
    padding: 25px 30px 30px;
    background: #fff;
}

.interest-form-v2 .form-group-v2 {
    margin-bottom: 18px;
}

.interest-form-v2 .form-group-v2 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    text-align: right;
}

.interest-form-v2 .form-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.interest-form-v2 .form-input-v2,
.interest-form-v2 .form-select-v2 {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
    color: #333;
}

.interest-form-v2 .form-input-v2::placeholder {
    color: #999;
}

.interest-form-v2 .form-input-v2:focus,
.interest-form-v2 .form-select-v2:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(184, 152, 93, 0.12);
}

.interest-form-v2 .phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.interest-form-v2 .phone-prefix {
    padding: 14px 16px;
    background: #f8f6f2;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    border-left: 1px solid #d0d0d0;
}

.interest-form-v2 .phone-input {
    border: none;
    border-radius: 0;
    flex: 1;
    padding: 14px 18px;
    background: transparent;
}

.interest-form-v2 .phone-input:focus {
    box-shadow: none;
    outline: none;
}

.interest-form-v2 .phone-input-group:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(184, 152, 93, 0.12);
}

.interest-form-v2 .form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray);
    text-align: right;
}

.interest-form-v2 .radio-group-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.interest-form-v2 .radio-group-v2.single {
    grid-template-columns: 1fr 1fr;
}

.interest-form-v2 .radio-option-v2 {
    position: relative;
    cursor: pointer;
}

.interest-form-v2 .radio-option-v2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.interest-form-v2 .radio-option-v2 .radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
    color: #555;
}

.interest-form-v2 .radio-option-v2 input:checked + .radio-label {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
    font-weight: 600;
}

.interest-form-v2 .radio-option-v2:hover .radio-label {
    border-color: var(--primary-gold);
    background: #faf8f4;
}

.interest-form-v2 .radio-option-v2 input:checked + .radio-label:hover {
    background: var(--dark-gold);
}

.interest-submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a3a2f;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: inherit;
}

.interest-submit-btn:hover {
    background: #234d3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 47, 0.3);
}

.interest-submit-btn:active {
    transform: translateY(0);
}

.interest-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Scrollbar styling for modal */
.interest-modal-container::-webkit-scrollbar {
    width: 6px;
}

.interest-modal-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.interest-modal-container::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

@media (max-width: 576px) {
    .interest-modal-container {
        max-width: 100%;
        border-radius: 20px;
        margin: 10px;
    }
    
    .interest-form-v2 .form-row-v2 {
        grid-template-columns: 1fr;
    }
    
    .interest-modal-body {
        padding: 25px 20px 30px;
    }
    
    .interest-modal-header {
        padding: 25px 20px;
    }
    
    .interest-modal-header h3 {
        font-size: 18px;
    }
}


/* ====== Register Interest Page Styles ====== */
.register-interest-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    min-height: calc(100vh - 200px);
}

.register-interest-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Form Container */
.register-form-container {
    padding: 50px 45px;
}

.form-header {
    margin-bottom: 35px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

/* Form Groups */
.register-interest-form .form-group-ri {
    margin-bottom: 22px;
}

.register-interest-form .form-group-ri label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.register-interest-form .form-group-ri label i {
    color: var(--primary-gold);
    margin-left: 8px;
    width: 18px;
}

.register-interest-form .form-row-ri {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Controls */
.register-interest-form .form-control-ri {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.register-interest-form .form-control-ri:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(184, 152, 93, 0.1);
}

.register-interest-form select.form-control-ri {
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

.register-interest-form textarea.form-control-ri {
    resize: none;
    min-height: 100px;
}

/* Phone Input */
.phone-input-ri {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-ri:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(184, 152, 93, 0.1);
}

.phone-input-ri .phone-code {
    padding: 14px 15px;
    background: #f8f6f2;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    border-left: 1px solid #e0e0e0;
}

.phone-input-ri .form-control-ri {
    border: none;
    border-radius: 0;
}

.phone-input-ri .form-control-ri:focus {
    box-shadow: none;
}

/* Radio Groups */
.radio-group-ri {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-option-ri {
    cursor: pointer;
}

.radio-option-ri input {
    display: none;
}

.radio-option-ri .radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-option-ri .radio-box i {
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
}

.radio-option-ri input:checked + .radio-box {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: #fff;
    border-color: var(--primary-gold);
}

.radio-option-ri input:checked + .radio-box i {
    color: #fff;
}

.radio-option-ri:hover .radio-box {
    border-color: var(--primary-gold);
    background: #faf8f4;
}

.radio-option-ri input:checked + .radio-box:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
}

/* Submit Button */
.btn-submit-ri {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #1a3a2f 0%, #2d5a47 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-family: inherit;
}

.btn-submit-ri:hover {
    background: linear-gradient(135deg, #234d3f 0%, #3a7a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 58, 47, 0.3);
}

.btn-submit-ri i {
    font-size: 16px;
}

/* Info Container */
.register-info-container {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    height: 100%;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-icon i {
    font-size: 36px;
    color: #fff;
}

.info-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.info-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.info-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}

.info-features li i {
    color: #fff;
    font-size: 14px;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.2);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-contact {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.info-contact .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.info-contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.info-contact .contact-item.whatsapp {
    background: rgba(37, 211, 102, 0.3);
}

.info-contact .contact-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.5);
}

/* Decorations */
.info-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.decoration-circle:first-child {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-circle:last-child {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Responsive */
@media (max-width: 991px) {
    .register-interest-section {
        padding: 60px 0;
    }
    
    .register-form-container {
        padding: 40px 30px;
    }
    
    .register-info-container {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .register-interest-form .form-row-ri {
        grid-template-columns: 1fr;
    }
    
    .radio-group-ri {
        grid-template-columns: 1fr;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .register-form-container {
        padding: 30px 20px;
    }
    
    .register-info-container {
        padding: 30px 20px;
    }
    
    .info-contact .contact-item {
        display: flex;
        margin-left: 0;
    }
}


/* ====== Hero Slide Content Styles ====== */
.hero-slide-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
