/* Property Detail Page Styles - Premium Redesign v2.0 */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 140px 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #1a3c6d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb i {
    font-size: 0.75rem;
    color: #999;
}

/* Property Hero Section - Enhanced */
.property-hero {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.property-hero-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1a3c6d;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.thumbnail {
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover::after {
    opacity: 1;
}

.thumbnail:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: #1a3c6d;
    box-shadow: 0 8px 24px rgba(26, 60, 109, 0.3);
}

.thumbnail.active::after {
    opacity: 0;
}

/* Property Details Section - Redesigned */
.property-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

/* Property Main Content - Enhanced Organization */
.property-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Property Header - Premium Style */
.property-header {
    padding-bottom: 30px;
    border-bottom: 3px solid #f0f0f0;
    margin-bottom: 10px;
}

.property-title-wrapper h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #1a3c6d;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.property-location {
    font-size: 1.15rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.property-location i {
    color: #d4af37;
    font-size: 1.3rem;
}

.property-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-golden-visa {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* Quick Stats - Premium Cards */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 10px 0;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.stat-box i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c6d;
}

/* Content Sections - Premium Cards */
.property-description,
.property-features,
.developer-info,
.location-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.property-description:hover,
.property-features:hover,
.developer-info:hover,
.location-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.property-description h2,
.property-features h2,
.developer-info h2,
.location-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #1a3c6d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.property-description h2 i,
.property-features h2 i,
.developer-info h2 i,
.location-section h2 i {
    color: #d4af37;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    border-radius: 10px;
}

.property-description p {
    line-height: 1.9;
    color: #555;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Features Grid - Compact Premium Redesign */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    background: linear-gradient(135deg, #fffbf0 0%, #fff7e6 100%);
    transform: translateX(3px);
    border-color: #d4af37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.feature-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    color: #d4af37;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover i {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    transform: scale(1.05);
}

.feature-item span {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Developer Card - Premium Design */
.developer-card {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    margin-top: 10px;
}

.developer-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.developer-logo > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-details h3 {
    font-size: 1.5rem;
    color: #1a3c6d;
    margin-bottom: 12px;
    font-weight: 700;
}

.developer-details p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Location - Enhanced Grid */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nearby-item:hover {
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
    border-color: #1a3c6d;
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(26, 60, 109, 0.1);
}

.nearby-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.nearby-item span {
    color: #555;
    font-size: 1.05rem;
}

/* Property Sidebar - Premium Sticky Design */
.property-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
}

/* Price Card - Premium */
.price-card {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    padding: 40px 35px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(26, 60, 109, 0.25);
    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%);
    pointer-events: none;
}

.price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-converted {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 500;
}

.roi-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.roi-badge i {
    color: #22c55e;
    font-size: 1.5rem;
}

.roi-badge span {
    color: #1a3c6d;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-primary-large,
.btn-whatsapp-large {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary-large {
    background: #ffffff;
    color: #1a3c6d;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
    background: #f8f9fa;
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
}

.btn-whatsapp-large:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.contact-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.contact-info i {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Payment Plan Card - Premium */
.payment-plan-card,
.investment-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.payment-plan-card h3,
.investment-card h3 {
    font-size: 1.4rem;
    color: #1a3c6d;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.payment-plan-card h3 i,
.investment-card h3 i {
    color: #d4af37;
    font-size: 1.3rem;
}

.payment-breakdown {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.payment-item span {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

.payment-item strong {
    color: #1a3c6d;
    font-size: 1.2rem;
    font-weight: 700;
}

.completion-date {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #e6f7ff 0%, #d0ebff 100%);
    border-radius: 14px;
    color: #1e40af;
    border: 1px solid #91caff;
}

.completion-date i {
    font-size: 1.4rem;
}

.completion-date span {
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-calculate {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a3c6d;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Similar Properties - Enhanced */
.similar-properties {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.similar-properties h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1a3c6d;
    text-align: center;
    margin-bottom: 50px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card-mini {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.property-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

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

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card-mini:hover .property-card-image img {
    transform: scale(1.15);
}

.property-card-content {
    padding: 28px;
}

.property-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #1a3c6d;
    margin-bottom: 12px;
    font-weight: 700;
}

.property-card-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 18px;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.btn-view {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26, 60, 109, 0.2);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 109, 0.35);
}

/* Inquiry Modal - Premium */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 50px 45px;
    border-radius: 28px;
    max-width: 650px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #1a3c6d;
    color: white;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1a3c6d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(26, 60, 109, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 60, 109, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .property-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Breadcrumb Mobile */
    .breadcrumb-section {
        padding: 100px 0 15px;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    /* Hero Section Mobile */
    .property-hero {
        padding: 30px 0 40px;
    }
    
    .property-hero-gallery {
        padding: 0 12px;
    }
    
    .main-image {
        height: 350px;
        border-radius: 16px;
        margin-bottom: 16px;
    }
    
    /* Better touch targets for navigation */
    .nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .image-nav {
        padding: 0 15px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .thumbnail {
        height: 100px;
        border-radius: 12px;
        border-width: 3px;
    }
    
    /* Property Details Mobile */
    .property-details-section {
        padding: 50px 0;
    }
    
    .property-title-wrapper h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .property-location {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .property-location i {
        font-size: 1.1rem;
    }
    
    .property-badges {
        gap: 8px;
        margin-top: 15px;
    }
    
    .badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Quick Stats Mobile - Stack Vertically */
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-box {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .stat-box i {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    /* Content Sections Mobile */
    .property-description,
    .property-features,
    .developer-info,
    .location-section,
    .payment-plan {
        padding: 20px 16px;
        border-radius: 14px;
    }
    
    .property-description h2,
    .property-features h2,
    .developer-info h2,
    .location-section h2,
    .payment-plan h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
        padding-bottom: 12px;
        gap: 8px;
    }
    
    .property-description h2 i,
    .property-features h2 i,
    .developer-info h2 i,
    .location-section h2 i,
    .payment-plan h2 i {
        font-size: 1.2rem;
        width: 36px;
        height: 36px;
    }
    
    .property-description p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-top: 8px;
    }
    
    /* Collapse long descriptions on mobile */
    .property-description p:not(:first-of-type) {
        display: none;
    }
    
    /* Show all paragraphs on larger screens */
    @media (min-width: 769px) {
        .property-description p:not(:first-of-type) {
            display: block;
        }
    }
    
    /* Features Grid Mobile - Ultra Compact 3-Column */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .feature-item {
        padding: 8px 6px;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .feature-item i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        border-radius: 6px;
        margin: 0 auto;
    }
    
    .feature-item span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Developer Card Mobile */
    .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 14px;
    }
    
    .developer-logo {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    .developer-details h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .developer-details p {
        font-size: 0.9rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Location Mobile */
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .nearby-item {
        padding: 10px 12px;
        border-radius: 10px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .nearby-icon {
        margin: 0 auto;
    }
    
    .nearby-item i {
        font-size: 1.2rem;
    }
    
    .nearby-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nearby-details h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .nearby-details p {
        font-size: 0.75rem;
    }
    
    /* Sidebar Mobile - Full Width */
    .property-sidebar {
        top: 100px;
    }
    
    .price-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .price-header h3 {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .price-subtitle,
    .price-converted {
        font-size: 1rem;
    }
    
    .roi-badge {
        padding: 14px 16px;
        border-radius: 14px;
        margin-bottom: 24px;
    }
    
    .roi-badge i {
        font-size: 1.3rem;
    }
    
    .roi-badge span {
        font-size: 0.95rem;
    }
    
    .btn-primary-large,
    .btn-whatsapp-large {
        padding: 15px;
        font-size: 1rem;
        border-radius: 14px;
        gap: 10px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .contact-info i {
        font-size: 1.1rem;
    }
    
    /* Payment Plan & Investment Cards Mobile */
    .payment-plan-card,
    .investment-card,
    .calculator-card,
    .contact-card,
    .sidebar-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .payment-plan-card h3,
    .investment-card h3,
    .calculator-card h3,
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .payment-breakdown,
    .calculator-results {
        gap: 12px;
        padding: 16px;
        border-radius: 10px;
    }
    
    .payment-item {
        padding: 14px 16px;
        border-radius: 10px;
    }
    
    .payment-item span {
        font-size: 0.95rem;
    }
    
    .payment-item strong {
        font-size: 1.1rem;
    }
    
    .completion-date {
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .completion-date i {
        font-size: 1.2rem;
    }
    
    .completion-date span {
        font-size: 0.95rem;
    }
    
    .btn-calculate,
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Similar Properties Mobile */
    .similar-properties {
        padding: 50px 0;
    }
    
    .similar-properties h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .property-card-mini {
        border-radius: 18px;
    }
    
    .property-card-image {
        height: 220px;
    }
    
    .property-card-content {
        padding: 24px;
    }
    
    .property-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .property-card-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .property-price {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .btn-view {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        padding: 35px 24px;
        border-radius: 24px;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    /* Calculator Inputs Mobile */
    .calculator-input label {
        font-size: 0.9rem;
    }
    
    .input-with-currency {
        border-radius: 10px;
    }
    
    .currency-prefix {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .input-with-currency input {
        padding: 12px 14px;
        font-size: 1rem;
    }
    
    .result-row span:first-child {
        font-size: 0.9rem;
    }
    
    .result-value {
        font-size: 1.05rem;
    }
    
    /* Payment Grid Mobile */
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-item {
        padding: 24px 20px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }
    
    .payment-icon i {
        font-size: 1.5rem;
    }
    
    .payment-details h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .payment-percentage {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .payment-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens Optimization */
    .breadcrumb-section {
        padding: 90px 0 10px;
    }
    
    .breadcrumb {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .property-hero {
        padding: 15px 0 25px;
    }
    
    .property-hero-gallery {
        padding: 0 10px;
    }
    
    .main-image {
        height: 250px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .image-nav {
        padding: 0 10px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .thumbnail {
        height: 70px;
        border-radius: 8px;
        border-width: 2px;
    }
    
    .property-details-section {
        padding: 30px 0;
    }
    
    .property-title-wrapper h1 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .property-location {
        font-size: 0.85rem;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .property-location i {
        font-size: 0.95rem;
    }
    
    .property-badges {
        gap: 5px;
        margin-top: 10px;
    }
    
    .badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-box {
        padding: 14px 10px;
        border-radius: 12px;
    }
    
    .stat-box i {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .property-description,
    .property-features,
    .developer-info,
    .location-section,
    .payment-plan {
        padding: 18px 14px;
        border-radius: 12px;
    }
    
    .property-description h2,
    .property-features h2,
    .developer-info h2,
    .location-section h2,
    .payment-plan h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
        gap: 6px;
    }
    
    .property-description h2 i,
    .property-features h2 i,
    .developer-info h2 i,
    .location-section h2 i,
    .payment-plan h2 i {
        font-size: 1rem;
        width: 28px;
        height: 28px;
    }
    
    .property-description p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 6px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .feature-item {
        padding: 8px 6px;
        border-radius: 8px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 4px;
    }
    
    .feature-item i {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
        border-radius: 6px;
        margin: 0 auto;
    }
    
    .feature-item span {
        font-size: 0.65rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .developer-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .developer-logo {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .developer-details h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .developer-details p {
        font-size: 0.85rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .nearby-grid {
        gap: 6px;
    }
    
    .nearby-item {
        padding: 8px 10px;
        border-radius: 8px;
    }
    
    .nearby-item i {
        font-size: 1.1rem;
    }
    
    .nearby-details h4 {
        font-size: 0.75rem;
    }
    
    .nearby-details p {
        font-size: 0.7rem;
    }
    
    .property-sidebar {
        top: 90px;
        gap: 20px;
    }
    
    .price-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .price-header h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .currency-symbol {
        font-size: 1rem;
    }
    
    .price-subtitle,
    .price-converted {
        font-size: 0.9rem;
    }
    
    .price-details {
        padding-top: 16px;
        margin-bottom: 20px;
    }
    
    .detail-row {
        padding: 10px 0;
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
    
    .roi-highlight {
        padding: 5px 12px;
        font-size: 1rem;
    }
    
    .status-offplan {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
    
    .roi-badge {
        padding: 12px 14px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .roi-badge i {
        font-size: 1.2rem;
    }
    
    .roi-badge span {
        font-size: 0.9rem;
    }
    
    .btn-primary-large,
    .btn-whatsapp-large,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 12px;
        gap: 8px;
    }
    
    .contact-info {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .contact-info i {
        font-size: 1rem;
    }
    
    .payment-plan-card,
    .investment-card,
    .calculator-card,
    .contact-card,
    .sidebar-card {
        padding: 24px 18px;
        border-radius: 18px;
    }
    
    .payment-plan-card h3,
    .investment-card h3,
    .calculator-card h3,
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
        gap: 8px;
    }
    
    .payment-plan-card h3 i,
    .investment-card h3 i,
    .calculator-card h3 i,
    .contact-card h3 i {
        font-size: 1.1rem;
    }
    
    .payment-breakdown,
    .calculator-results {
        gap: 10px;
        padding: 14px;
    }
    
    .payment-item {
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .payment-item span {
        font-size: 0.9rem;
    }
    
    .payment-item strong {
        font-size: 1rem;
    }
    
    .completion-date {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .completion-date i {
        font-size: 1.1rem;
    }
    
    .completion-date span {
        font-size: 0.9rem;
    }
    
    .btn-calculate,
    .btn-submit {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .similar-properties {
        padding: 40px 0;
    }
    
    .similar-properties h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .properties-grid {
        gap: 20px;
    }
    
    .property-card-mini {
        border-radius: 16px;
    }
    
    .property-card-image {
        height: 200px;
    }
    
    .property-card-content {
        padding: 20px;
    }
    
    .property-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .property-card-content p {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .property-price {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }
    
    .btn-view {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .modal {
        padding: 12px;
    }
    
    .modal-content {
        padding: 30px 20px;
        border-radius: 20px;
        max-height: 80vh;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .calculator-input {
        margin-bottom: 16px;
    }
    
    .calculator-input label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .input-with-currency {
        border-radius: 8px;
    }
    
    .currency-prefix {
        padding: 11px 12px;
        font-size: 0.9rem;
    }
    
    .input-with-currency input {
        padding: 11px 12px;
        font-size: 0.95rem;
    }
    
    .calculator-results {
        padding: 16px 14px;
    }
    
    .result-row {
        padding: 10px 0;
    }
    
    .result-row span:first-child {
        font-size: 0.85rem;
    }
    
    .result-value {
        font-size: 1rem;
    }
    
    .calculator-note {
        font-size: 0.75rem;
    }
    
    .golden-visa-header {
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .golden-visa-header i {
        font-size: 1.6rem;
    }
    
    .golden-visa-header h3 {
        font-size: 1.1rem;
    }
    
    .golden-visa-card p {
        font-size: 0.9rem;
        margin-bottom: 14px;
        line-height: 1.6;
    }
    
    .visa-link {
        font-size: 0.9rem;
    }
    
    .payment-grid {
        gap: 14px;
    }
    
    .payment-item {
        padding: 20px 16px;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .payment-icon i {
        font-size: 1.3rem;
    }
    
    .payment-details h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .payment-percentage {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .payment-description {
        font-size: 0.8rem;
    }
}

/* Sidebar Card Styles - New Structure */
.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

/* Price Card Specific */
.price-card {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    color: white;
    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%);
    pointer-events: none;
}

.price-card:hover {
    box-shadow: 0 12px 40px rgba(26, 60, 109, 0.3);
}

.price-header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.price-header h3 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.price-details {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.detail-value {
    font-size: 1.05rem;
    color: white;
    font-weight: 600;
}

.roi-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.status-offplan {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1a3c6d;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Calculator Card */
.calculator-card h3 {
    font-size: 1.4rem;
    color: #1a3c6d;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.calculator-card h3 i {
    color: #d4af37;
    font-size: 1.3rem;
}

.calculator-input {
    margin-bottom: 20px;
}

.calculator-input label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.input-with-currency {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-with-currency:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.currency-prefix {
    padding: 14px 16px;
    background: #f8f9fa;
    font-weight: 600;
    color: #1a3c6d;
    border-right: 2px solid #e9ecef;
}

.input-with-currency input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 1.05rem;
    outline: none;
    font-family: inherit;
}

.calculator-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.result-row:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.result-row span:first-child {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.result-value {
    font-size: 1.15rem;
    color: #1a3c6d;
    font-weight: 700;
}

.calculator-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Golden Visa Card */
.golden-visa-card {
    background: linear-gradient(135deg, #fffbf0 0%, #fff7e6 100%);
    border: 2px solid #f4d03f;
}

.golden-visa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.golden-visa-header i {
    font-size: 2rem;
    color: #d4af37;
}

.golden-visa-header h3 {
    font-size: 1.3rem;
    color: #1a3c6d;
    margin: 0;
    font-weight: 700;
}

.golden-visa-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.visa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a3c6d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.visa-link:hover {
    color: #d4af37;
    gap: 12px;
}

.visa-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.visa-link:hover i {
    transform: translateX(4px);
}

/* Contact Card */
.contact-card h3 {
    font-size: 1.4rem;
    color: #1a3c6d;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.contact-card h3 i {
    color: #d4af37;
    font-size: 1.3rem;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
}

/* Payment Plan Section (Main Content) */
.payment-plan {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.payment-plan:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.payment-plan h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #1a3c6d;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.payment-plan h2 i {
    color: #d4af37;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    border-radius: 10px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.payment-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.payment-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.payment-icon i {
    font-size: 1.5rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.payment-item:hover .payment-icon i {
    color: white;
    transform: scale(1.1);
}

.payment-details h3 {
    font-size: 0.95rem;
    color: #1a3c6d;
    margin-bottom: 10px;
    font-weight: 700;
}

.payment-percentage {
    font-size: 1.7rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px;
    display: block;
}

.payment-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Responsive for Payment Grid */
@media (max-width: 1024px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        padding: 24px;
    }
    
    .price-value {
        font-size: 2rem;
    }
}
