/* ===================================
   OFF PLAN & EXCLUSIVE PROPERTIES
   SECTIONS STYLING - ENHANCED
   =================================== */

/* Section Badge Premium - Enhanced */
.section-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a3c6d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.4),
        0 8px 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-badge-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ===================================
   OFF PLAN PROPERTIES SECTION - ENHANCED
   =================================== */

.offplan-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%, rgba(26, 60, 109, 0.03) 100%),
        linear-gradient(to bottom, #fff 0%, #f8f9fa 30%, #f5f7fa 70%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.offplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0.3;
}

.offplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.offplan-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offplan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 50%, rgba(26, 60, 109, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.offplan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.offplan-card:hover::before {
    opacity: 1;
}

.offplan-card.featured {
    border: 2px solid #d4af37;
    box-shadow: 
        0 15px 50px rgba(212, 175, 55, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom, #fff 0%, #fffef9 100%);
}

.offplan-card.featured:hover {
    box-shadow: 
        0 30px 70px rgba(212, 175, 55, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a3c6d;
    padding: 10px 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: ribbonShimmer 3s ease-in-out infinite;
}

@keyframes ribbonShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.offplan-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
}

.offplan-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

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

.offplan-card:hover .offplan-image img {
    transform: scale(1.15) rotate(2deg);
}

.offplan-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: rgba(26, 60, 109, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.completion-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a3c6d;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    z-index: 3;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 4px 20px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    50% { 
        box-shadow: 
            0 4px 30px rgba(212, 175, 55, 0.7),
            0 0 15px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }
}

.offplan-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.offplan-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1a3c6d;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offplan-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.offplan-location i {
    color: #d4af37;
    font-size: 16px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.offplan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, transparent, #d4af37, transparent) border-box;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent) 1;
}

.offplan-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.offplan-features span:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), #fff);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.offplan-features i {
    color: #d4af37;
    font-size: 16px;
}

.offplan-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 60, 109, 0.03), rgba(212, 175, 55, 0.03));
    border-radius: 15px;
    border: 1px solid rgba(26, 60, 109, 0.08);
}

.offplan-price {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c6d 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offplan-payment {
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a3c6d, #2d5a8f);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 60, 109, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offplan-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #1a3c6d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.15));
    transition: left 0.4s ease;
}

.benefit-tag:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.benefit-tag:hover::before {
    left: 0;
}

.benefit-tag i {
    color: #d4af37;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.benefit-tag span {
    position: relative;
    z-index: 1;
}

.btn-offplan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 100%);
    background-size: 200% 100%;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(26, 60, 109, 0.3);
}

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

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

.btn-offplan:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 60, 109, 0.4);
}

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

.btn-offplan:hover i {
    transform: translateX(5px);
}

/* Off Plan CTA - Enhanced */
.offplan-cta {
    background: linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #1a3c6d 100%);
    background-size: 200% 100%;
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(26, 60, 109, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.offplan-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: pulse-cta 10s ease-in-out infinite;
}

.offplan-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.03) 10px,
            rgba(212, 175, 55, 0.03) 20px
        );
    pointer-events: none;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(45deg); opacity: 0.8; }
}

.offplan-cta-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.offplan-cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.offplan-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    text-align: left;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offplan-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    font-size: 17px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offplan-benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.offplan-benefits-list i {
    color: #d4af37;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.offplan-benefits-list strong {
    color: #d4af37;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-cta-large-gold {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a3c6d;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-cta-large-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine-gold 3s ease-in-out infinite;
}

@keyframes shine-gold {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-cta-large-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.6),
        0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-large-gold i {
    transition: transform 0.3s ease;
}

.btn-cta-large-gold:hover i {
    transform: rotate(90deg) scale(1.2);
}

/* ===================================
   EXCLUSIVE PROPERTIES SECTION - ENHANCED
   =================================== */

.exclusive-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #1a3c6d 0%, #2d5a8f 50%, #1a3c6d 100%);
    background-size: 100% 100%, 200% 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: exclusiveGradient 15s ease-in-out infinite;
}

@keyframes exclusiveGradient {
    0%, 100% { background-position: 0% 50%, 0% 50%; }
    50% { background-position: 100% 50%, 100% 50%; }
}

.exclusive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    animation: float-pattern 20s ease-in-out infinite;
}

@keyframes float-pattern {
    0%, 100% { opacity: 0.3; transform: translate(0, 0); }
    50% { opacity: 0.6; transform: translate(20px, 20px); }
}

.exclusive-section .section-header h2,
.exclusive-section .section-header p {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.exclusive-section .section-header h2 {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4d03f 20%,
        #d4af37 40%,
        #f4d03f 50%,
        #d4af37 60%,
        #f4d03f 80%,
        #ffffff 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) !important;
}

.exclusive-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.exclusive-option-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 55px 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.exclusive-option-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate-glow 15s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.exclusive-option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.exclusive-option-card:hover::after {
    left: 100%;
}

.exclusive-option-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.exclusive-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #1a3c6d;
    margin-bottom: 35px;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(212, 175, 55, 0.5),
            0 0 20px rgba(212, 175, 55, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.exclusive-option-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.exclusive-option-card p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.exclusive-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    position: relative;
    z-index: 2;
}

.exclusive-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exclusive-features-list li:last-child {
    border-bottom: none;
}

.exclusive-features-list li:hover {
    padding-left: 10px;
    color: #fff;
}

.exclusive-features-list i {
    color: #d4af37;
    font-size: 20px;
    animation: spin-icon 3s linear infinite;
}

@keyframes spin-icon {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(360deg); }
}

.exclusive-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding: 30px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.exclusive-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.exclusive-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.exclusive-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exclusive-stats .stat-item strong {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    animation: counter-glow 2s ease-in-out infinite;
}

@keyframes counter-glow {
    0%, 100% { text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 2px 20px rgba(212, 175, 55, 0.8), 0 0 10px rgba(212, 175, 55, 0.5); }
}

.exclusive-stats .stat-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.btn-exclusive-buy,
.btn-exclusive-rent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-exclusive-buy {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a3c6d;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: buyButtonShimmer 4s ease-in-out infinite;
}

@keyframes buyButtonShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.btn-exclusive-buy:hover::before {
    width: 300px;
    height: 300px;
}

.btn-exclusive-buy:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-exclusive-rent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-exclusive-rent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-exclusive-rent:hover::before {
    left: 100%;
}

.btn-exclusive-rent:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #d4af37;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.btn-exclusive-buy i,
.btn-exclusive-rent i {
    transition: transform 0.3s ease;
}

.btn-exclusive-buy:hover i,
.btn-exclusive-rent:hover i {
    transform: translateX(5px);
}

.exclusive-highlight {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.exclusive-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: highlight-glow 5s ease-in-out infinite;
}

@keyframes highlight-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.highlight-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #1a3c6d;
    flex-shrink: 0;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    animation: highlightIconSpin 8s ease-in-out infinite;
}

@keyframes highlightIconSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(360deg); }
}

.highlight-text h4 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN - ENHANCED
   =================================== */

@media (max-width: 1024px) {
    .offplan-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }

    .exclusive-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offplan-cta-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .offplan-section,
    .exclusive-section {
        padding: 80px 0;
    }

    .offplan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offplan-image {
        height: 250px;
    }

    .offplan-content {
        padding: 30px;
    }

    .offplan-cta {
        padding: 45px 30px;
    }

    .offplan-cta-content h3 {
        font-size: 32px;
    }

    .offplan-benefits-list {
        text-align: center;
        padding: 25px;
    }

    .offplan-benefits-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 0;
    }

    .btn-cta-large-gold {
        padding: 18px 35px;
        font-size: 16px;
    }

    .exclusive-options {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .exclusive-option-card {
        padding: 45px 35px;
    }

    .exclusive-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .exclusive-option-card h3 {
        font-size: 30px;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .exclusive-highlight {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .offplan-section,
    .exclusive-section {
        padding: 60px 0;
    }

    .section-badge-premium {
        font-size: 11px;
        padding: 10px 20px;
    }

    .offplan-image {
        height: 220px;
    }

    .offplan-content {
        padding: 25px;
    }

    .offplan-content h3 {
        font-size: 24px;
    }

    .offplan-price {
        font-size: 26px;
    }

    .offplan-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .offplan-features {
        gap: 12px;
    }

    .offplan-features span {
        font-size: 13px;
        padding: 6px 12px;
    }

    .offplan-benefits {
        gap: 8px;
    }

    .benefit-tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn-offplan {
        padding: 16px;
        font-size: 15px;
    }

    .offplan-cta {
        padding: 35px 20px;
    }

    .offplan-cta-content h3 {
        font-size: 26px;
    }

    .offplan-benefits-list {
        padding: 20px;
    }

    .offplan-benefits-list li {
        font-size: 15px;
        padding: 12px 0;
    }

    .btn-cta-large-gold {
        padding: 16px 30px;
        font-size: 15px;
    }

    .exclusive-option-card {
        padding: 35px 25px;
    }

    .exclusive-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .exclusive-option-card h3 {
        font-size: 26px;
    }

    .exclusive-option-card p {
        font-size: 15px;
    }

    .exclusive-features-list li {
        font-size: 14px;
    }

    .exclusive-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .exclusive-stats .stat-item strong {
        font-size: 28px;
    }

    .btn-exclusive-buy,
    .btn-exclusive-rent {
        padding: 16px;
        font-size: 15px;
    }

    .exclusive-highlight {
        padding: 30px 20px;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .highlight-text h4 {
        font-size: 22px;
    }

    .highlight-text p {
        font-size: 15px;
    }
}
