/* ==================== PROJECT PAGE STYLES ==================== */

/* Typography & Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #2d3748;
    overflow-x: hidden;
    font-size: 0.9375rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
}

/* ==================== HERO SECTION ==================== */
.hero-banner {
    height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 80px 0 60px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-location {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.hero-price {
    font-size: 1.875rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-family: 'Inter', sans-serif;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    animation: pulse 2s infinite;
    font-family: 'Inter', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-custom {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.highlight-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.highlight-box:nth-child(1) { animation-delay: 0.1s; }
.highlight-box:nth-child(2) { animation-delay: 0.2s; }
.highlight-box:nth-child(3) { animation-delay: 0.3s; }
.highlight-box:nth-child(4) { animation-delay: 0.4s; }

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.highlight-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.highlight-box:hover i {
    transform: scale(1.1);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.highlight-box p {
    color: #718096;
    font-size: 0.9375rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    color: #1a202c;
    animation: fadeIn 0.6s ease-out;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

/* ==================== CARDS ==================== */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.info-card h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* Professional Description Card */
.professional-description {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.professional-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.description-content {
    line-height: 1.7;
    font-size: 0.9375rem;
    color: #4a5568;
    text-align: justify;
    padding-left: 10px;
    font-weight: 400;
}

.description-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.description-content li {
    position: relative;
    padding: 10px 0 10px 42px;
    margin-bottom: 8px;
    line-height: 1.7;
    color: #2d3748;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.description-content li::before {
    content: '\F284';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.description-content li:hover {
    padding-left: 46px;
}

.description-content li:hover::before {
    transform: scale(1.1);
}

/* Statistics Badge */
.stats-badge, .count-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    animation: fadeInUp 0.6s ease-out;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.stats-badge i, .count-badge i {
    font-size: 1.25rem;
}

.units-overview, .amenities-count {
    text-align: center;
    margin-bottom: 40px;
}

/* ==================== UNIT TYPE CARDS ==================== */
.unit-type-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.unit-type-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.unit-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.unit-type-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.unit-card-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.unit-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #FFA500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.unit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.unit-type-card:hover .unit-icon {
    transform: scale(1.08);
}

.unit-icon i {
    font-size: 1.75rem;
    color: white;
}

.unit-details {
    margin-bottom: 18px;
    flex: 1;
}

.unit-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.unit-label {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.unit-status {
    width: 100%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.status-badge.available {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Unit Info Section */
.unit-info-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.unit-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.unit-info-item i {
    color: var(--primary-color);
    font-size: 0.9375rem;
    width: 18px;
    text-align: center;
}

.unit-info-item span {
    font-weight: 500;
}

.btn-floor-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 121, 107, 0.3);
}

.btn-floor-plan:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 107, 0.4);
}

.btn-floor-plan i {
    font-size: 0.9375rem;
}

/* Unit Type Groups */
.unit-type-group {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.unit-type-group-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-type-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-type-title i {
    font-size: 1.5rem;
}

.unit-count-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Unit Types Table */
.unit-types-table {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.unit-types-table thead {
    background: #f8f9fa;
}

.unit-types-table thead th {
    border-bottom: 2px solid #dee2e6;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-types-table tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

.unit-types-table tbody tr:hover {
    background-color: #f8f9fa;
}

.unit-types-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    font-size: 0.9375rem;
    color: #555;
}

.unit-type-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-icon-small {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.unit-type-name {
    font-weight: 600;
    color: #2c3e50;
}

.bedroom-badge-small {
    background: linear-gradient(135deg, var(--secondary-color), #FFA500);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.area-value,
.price-value {
    font-weight: 600;
    color: #2c3e50;
}

.btn-floor-plan-table {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

.btn-floor-plan-table:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 121, 107, 0.4);
}

.btn-floor-plan-table i {
    font-size: 0.9375rem;
}

/* ==================== PAYMENT PLANS ==================== */
/* Payment Summary Stats */
.payment-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    animation: fadeInUp 0.6s ease-out;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.summary-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.summary-stat i {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Professional Payment Card */
.payment-card-pro {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.payment-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--plan-color, var(--primary-color));
}

.payment-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--plan-color, var(--primary-color));
}

.payment-header-pro {
    background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04));
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.payment-header-pro:hover {
    background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.06));
}

.collapse-toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.collapse-toggle i {
    font-size: 1rem;
    color: #555;
    transition: transform 0.3s ease;
}

.payment-header-pro.expanded .collapse-toggle i {
    transform: rotate(180deg);
}

.payment-header-pro:hover .collapse-toggle {
    background: rgba(0, 0, 0, 0.1);
}

.plan-icon-wrapper {
    width: 55px;
    height: 55px;
    background: var(--plan-color, var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.plan-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.plan-title {
    color: #1a202c;
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.plan-subtitle {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.payment-body-pro {
    padding: 30px;
}

.payment-collapse {
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapse-toggle i {
    transition: transform 0.3s ease;
}

.payment-item {
    position: relative;
    padding-bottom: 25px;
}

.payment-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.payment-item:last-child::after {
    display: none;
}

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

.payment-name-section {
    flex: 1;
}

.payment-name {
    color: #1a202c;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.payment-number {
    display: inline-block;
    background: #f0f0f0;
    color: #718096;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.percentage-badge-pro {
    background: var(--plan-color, var(--primary-color));
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.payment-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 3px solid var(--plan-color, var(--primary-color));
}

.payment-schedule i {
    color: var(--plan-color, var(--primary-color));
    font-size: 1rem;
}

.payment-schedule span {
    color: #2d3748;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.payment-description {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--plan-color, var(--primary-color));
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Legacy Payment Card Styles (keeping for compatibility) */
.payment-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.payment-header {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.08), rgba(247, 164, 0, 0.08));
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.payment-header h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.payment-body {
    padding: 30px;
}

.percentage-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ==================== GALLERY ==================== */

.gallery-featured-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    height: 500px;
}

.gallery-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-featured-img:hover img {
    transform: scale(1.08);
}

.featured-badge-img {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.gallery-thumbnail {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 220px;
    cursor: pointer;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-thumbnail:hover img {
    transform: scale(1.15);
}

/* ==================== AMENITY CARD ==================== */
.amenity-item-pro {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.amenity-item-pro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.amenity-item-pro:hover {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.03), rgba(247, 164, 0, 0.03));
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.amenity-item-pro:hover::before {
    transform: scaleY(1);
}

.amenity-icon-wrapper {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.amenity-icon-wrapper i {
    color: white;
    font-size: 1.125rem;
}

.amenity-text {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

/* Legacy Amenity Item */
.amenity-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.amenity-item:hover {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.05), rgba(247, 164, 0, 0.05));
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 20px;
    min-width: 40px;
}

.amenity-item span {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* ==================== BUTTONS ==================== */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.875rem;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary-gradient:hover::before {
    left: 0;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

.btn-primary-gradient i {
    margin-right: 10px;
}

/* ==================== SIDEBAR ==================== */
.sticky-sidebar {
    position: sticky;
    top: 150px;
}

.price-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.price-tag-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.price-tag-icon i {
    font-size: 1.5rem;
    color: white;
}

.price-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.price-label {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.price-divider {
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    margin: 25px auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.btn-brochure {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
}

.btn-brochure:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-brochure i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.developer-info {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.developer-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.developer-info .card-body {
    padding: 40px 30px;
}

.developer-info h5 {
    font-weight: 700;
    color: #718096;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
}

.developer-info h4 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* Property and Completion Cards */
.property-card, .completion-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e8e8e8;
}

.property-header, .completion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.property-header i, .completion-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.property-header h6, .completion-header h6 {
    margin: 0;
    color: #222;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.property-detail, .completion-detail {
    margin: 0;
    color: #444;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* ==================== CONTACT FORM ==================== */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-title {
    color: #222;
    font-weight: 700;
    font-size: 1.25rem;
}

.contact-section-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #e8e8e8;
    overflow: hidden;
}

.contact-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-intro-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-intro-icon i {
    font-size: 1.75rem;
}

.contact-intro h5 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.contact-intro p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

.professional-form {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 1;
}

.input-icon-wrapper .form-control,
.input-icon-wrapper .form-select {
    padding-left: 45px;
}

.submit-btn {
    padding: 15px 35px !important;
    font-size: 0.9375rem !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.05em !important;
}

.contact-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.contact-section .form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.contact-section .form-control,
.contact-section .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 49, 146, 0.1);
    outline: none;
}

/* ==================== MAP ==================== */
#map {
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

/* ==================== RELATED PROJECTS ==================== */
.related-projects-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 80px 0;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
    background: white;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.project-card .card-title {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.1875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.project-card .card-img-top {
    transition: transform 0.4s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

/* ==================== UTILITY CLASSES ==================== */
.content-section {
    padding: 80px 0;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .hero-price {
        font-size: 1.375rem;
    }

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

    .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }

    .price-card {
        margin-bottom: 30px;
    }

    .highlight-box {
        margin-bottom: 20px;
    }

    .gallery-featured-img {
        height: 350px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .content-section {
        padding: 60px 0;
    }

    .related-projects-section {
        padding: 60px 0;
    }

    #navbarNav {
        display: none !important;
    }

    .section-nav {
        display: none;
    }

    /* Professional mobile adjustments */
    .payment-summary {
        padding: 20px;
    }

    .summary-stat {
        padding: 20px;
        gap: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .payment-header-pro {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .plan-icon-wrapper {
        margin-bottom: 15px;
    }

    .payment-body-pro {
        padding: 25px 20px;
    }

    .payment-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .percentage-badge-pro {
        margin-top: 10px;
    }

    .unit-icon {
        width: 55px;
        height: 55px;
    }

    .unit-icon i {
        font-size: 1.5rem;
    }

    .unit-title {
        font-size: 1rem;
    }

    .unit-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .amenity-item-pro {
        padding: 18px 20px;
    }

    .amenity-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .amenity-icon-wrapper i {
        font-size: 1.1rem;
    }

    .amenity-text {
        font-size: 0.875rem;
    }

    .contact-intro {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .contact-intro h5 {
        font-size: 1.125rem;
    }

    .professional-form {
        padding: 30px 20px;
    }

    .stats-badge, .count-badge {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }

    .nearby-icon-header {
        padding: 20px;
    }

    .nearby-icon-header i {
        font-size: 1.5rem;
    }

    .nearby-icon-header span {
        font-size: 1.1rem;
    }

    .nearby-content {
        padding: 20px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-banner {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .sticky-sidebar {
        top: 120px;
    }
}

/* Sticky Footer Contact Bar */
.sticky-footer-contact-pro {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(44,62,80,0.10);
    display: flex;
    width: 100vw;
    border-top: 1px solid #eaeaea;
}
.sticky-footer-contact-pro .footer-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #2e3192);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1.08rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    border-right: 1px solid #eaeaea;
}
.sticky-footer-contact-pro .footer-btn:last-child {
    border-right: none;
}
.sticky-footer-contact-pro .footer-btn i {
    font-size: 1.2rem;
    margin-right: 0.4rem;
    background: #fff;
    color: var(--primary-color, #2e3192);
    border-radius: 50%;
    padding: 0.18rem;
    margin-bottom: 1px;
}
.sticky-footer-contact-pro .footer-btn:hover, .sticky-footer-contact-pro .footer-btn:focus {
    background: var(--secondary-color, #f7a400);
    color: #fff;
    text-decoration: none;
}
.sticky-footer-contact-pro .footer-btn:hover i, .sticky-footer-contact-pro .footer-btn:focus i {
    color: var(--secondary-color, #f7a400);
}
@media (max-width: 600px) {
    .sticky-footer-contact-pro {
        flex-direction: column;
    }
    .sticky-footer-contact-pro .footer-btn {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        width: 100vw;
        font-size: 0.98rem;
        padding: 0.7rem 0;
    }
    .sticky-footer-contact-pro .footer-btn:last-child {
        border-bottom: none;
    }
}

/* === Modal Brochure & WhatsApp Styles === */
.modal-brochure-bg, .modal-whatsapp-bg {
    background: linear-gradient(rgba(34,34,34,0.68), rgba(34,34,34,0.82)), var(--modal-image, none) center center/cover no-repeat;
    min-height: 440px;
    border-radius: 1.2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 12px 40px rgba(44,62,80,0.22);
}
.modal-brochure-overlay, .modal-whatsapp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--primary-color, #2e3192) 0%, var(--secondary-color, #f7a400) 100%);
    opacity: 0.22;
    z-index: 1;
}
.modal-brochure-content, .modal-whatsapp-content {
    position: relative;
    z-index: 2;
    padding: 2.7rem 2.5rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border-radius: 1.1rem;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    max-width: 420px;
    margin: 2.5rem auto;
}
.modal-brochure-logo, .modal-whatsapp-logo {
    max-width: 90px;
    margin-bottom: 1.2rem;
    background: #fff;
    border-radius: 1.2rem;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 4px 24px rgba(44,62,80,0.22);
    display: block;
    border: 2px solid #fff;
}
.modal-brochure-title, .modal-whatsapp-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 16px rgba(44,62,80,0.22);
    letter-spacing: -0.01em;
}
.modal-brochure-subtitle, .modal-whatsapp-subtitle {
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    opacity: 0.96;
}
.modal-brochure-form .form-label, .modal-whatsapp-form .form-label {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.modal-brochure-form .form-control, .modal-whatsapp-form .form-control {
    background: rgba(255,255,255,0.97);
    border: none;
    color: #222;
    font-weight: 500;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 8px rgba(44,62,80,0.08);
}
.modal-brochure-form .form-control:focus, .modal-whatsapp-form .form-control:focus {
    box-shadow: 0 0 0 2px var(--primary-color, #2e3192);
}
.modal-brochure-form .btn-primary, .modal-whatsapp-form .btn-success {
    background: linear-gradient(90deg, var(--primary-color, #2e3192), var(--secondary-color, #f7a400));
    border: none;
    font-weight: 700;
    padding: 0.7rem 2.2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.modal-brochure-form .btn-secondary, .modal-whatsapp-form .btn-secondary {
    border-radius: 2rem;
    font-weight: 500;
}
@media (max-width: 600px) {
    .modal-brochure-content, .modal-whatsapp-content {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .modal-brochure-title, .modal-whatsapp-title {
        font-size: 1.3rem;
    }
}
