html {
    scrollbar-gutter: stable;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f5f5f5;
}

@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
    background-color: #1a1a1a; /* Sleek dark fallback while image loads */
    background-image: url('images/c.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}

/* Overlay to make text/header pop more if needed */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.header {
    position: absolute;
    top: 20px;
    left: 5%;
    width: 90%;
    background: transparent;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-container img {
    height: 50px; /* Adjust logo size as needed */
    width: auto;
    object-fit: contain;
}

/* Location Selector Styles */
.location-selector {
    position: relative;
    margin-right: 20px;
}

.location-trigger {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
}

.location-trigger:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.location-trigger .chevron-icon,
.location-trigger i,
.mobile-dropdown-trigger .chevron-icon,
.mobile-dropdown-trigger i {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.location-trigger.active .chevron-icon,
.location-trigger.active i,
.mobile-dropdown-trigger.active .chevron-icon,
.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

.location-modal {
    display: none;
    position: absolute;
    top: 50px; 
    right: 0;
    width: 440px;
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px 20px 0 20px;
    z-index: 100;
    border: 1px solid #eee;
    cursor: default;
}

.location-modal.active {
    display: block;
    animation: dropdownFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

        .search-box {
            display: flex;
            align-items: center;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 20px;
        }
        
        .search-box input {
            border: none;
            outline: none;
            width: 100%;
            margin-left: 10px;
            font-size: 15px;
            color: #333;
        }
        
        .search-icon {
            color: #888;
        }

        .modal-title {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .city-btn {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            color: #444;
            transition: all 0.2s;
        }
        
        .city-btn:hover {
            border-color: #d0d0d0;
            background: #fafafa;
        }
        
        .city-btn.active {
            border-color: #7b42f6; 
            color: #333;
        }
        
        .city-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background-color: #f0f4ff;
            color: #5d5dff;
            border-radius: 6px;
            font-size: 14px;
        }

        .modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f4f5f7;
            margin: 0 -20px;
            padding: 15px 20px;
            border-radius: 0 0 12px 12px;
            font-size: 13px;
        }
        
        .footer-left {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #444;
        }
        
        .divider {
            width: 1px;
            height: 12px;
            background-color: #ccc;
        }
        
        .view-all {
            color: #666;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 3px;
        }
        
        .view-all:hover {
            color: #333;
        }

        .hero-content {
            position: absolute;
            top: 70%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 780px;
            display: flex;
            flex-direction: column;
            z-index: 5;
        }

        /* Hi-Tech Animated Background Text */
        .hero-bg-text {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 6.5vw;
            font-weight: 800;
            color: rgb(255, 255, 255);
            mix-blend-mode: overlay;
            white-space: nowrap;
            letter-spacing: 0.10em;
            z-index: 2;
            pointer-events: none;
        }

        .search-widget {
            width: 100%;
            border-radius: 24px;
            padding: 25px 30px 30px 30px;
            position: relative;
        }

        .search-widget-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            z-index: -1;
        }

        .search-widget-bg::before {
            content: '';
            position: absolute;
            top: 0; left: -50%;
            width: 200%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-20deg);
            animation: shine 6s infinite;
            pointer-events: none;
        }

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

        .search-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 5px;
        }
        
        .search-tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.0);
            border: 1px solid transparent;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 20px;
            border-radius: 30px;
            position: relative;
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .tab-btn.active {
            background: rgba(255, 255, 255, 1);
            color: #333;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .tab-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .mobile-tabs-dropdown {
            display: none;
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .mobile-dropdown-trigger {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 12px 20px;
            border-radius: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .mobile-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            margin-top: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            z-index: 20;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .mobile-dropdown-menu.active {
            display: block;
        }
        
        .mobile-tab-btn {
            width: 100%;
            text-align: left;
            padding: 14px 20px;
            background: none;
            border: none;
            border-bottom: 1px solid #eee;
            font-size: 15px;
            font-weight: 500;
            color: #444;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .mobile-tab-btn:last-child {
            border-bottom: none;
        }
        
        .mobile-tab-btn.active {
            background: #f0f4ff;
            color: #5d5dff;
            font-weight: 600;
        }
        
        .mobile-tab-btn:hover {
            background: #fafafa;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
        }

        .search-suggestions-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 100%;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            max-height: 280px;
            overflow-y: auto;
            border: 1px solid #e2e8f0;
            padding: 8px 0;
        }

        .search-suggestions-dropdown.active {
            display: block;
        }

        .suggestion-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: #333333;
            transition: background 0.2s ease;
            text-align: left;
        }

        .suggestion-item:hover {
            background-color: #f7fafc;
        }

        .suggestion-text {
            color: #333333;
        }

        .suggestion-badge {
            background-color: #f0f4ff;
            color: #5d5dff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid #d0dbff;
            text-transform: lowercase;
        }

        .search-suggestions-dropdown::-webkit-scrollbar {
            width: 6px;
        }

        .search-suggestions-dropdown::-webkit-scrollbar-track {
            background: #f7fafc;
            border-radius: 0 12px 12px 0;
        }

        .search-suggestions-dropdown::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 10px;
        }

        .search-suggestions-dropdown::-webkit-scrollbar-thumb:hover {
            background: #a0aec0;
        }

        .search-input-container {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 5px 8px 5px 24px;
            height: 60px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: box-shadow 0.3s ease;
        }
        
        .search-input-container:focus-within {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .search-icon-main {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin: 0 15px;
        }
        
        .search-input-container input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 16px;
            color: #fff;
            background: transparent;
        }
        
        .search-input-container input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-action-btn {
            background: linear-gradient(135deg, #6338f0, #9f7aea);
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 32px;
            height: 100%;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 56, 240, 0.3);
        }
        
        .search-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 56, 240, 0.5);
        }
        
        .search-action-btn:hover {
            background-color: #5127d1;
        }

        .recent-search {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 25px;
            align-self: flex-start;
            margin-left: 0px;
        }
        
        .recent-label {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-shadow: 0 2px 5px rgba(0,0,0,0.6);
        }
        
        .recent-pill {
            background-color: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            transition: all 0.2s;
        }
        
        .recent-pill:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-tabs {
                display: none !important;
            }
            .mobile-tabs-dropdown {
                display: block;
            }
            .header {
                padding: 10px 20px;
                width: 96%;
                left: 2%;
            }
            .logo-container img {
                height: 40px;
            }
            .location-modal {
                width: 360px;
                right: -10px;
            }
            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-content {
                width: 95%;
            }
            .search-input-container {
                height: 55px;
            }
            .search-action-btn {
                padding: 0 20px;
            }
            .suggestion-item {
                padding: 10px 16px;
                font-size: 14px;
            }
            .suggestion-badge {
                font-size: 11px;
                padding: 3px 8px;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 10px 15px;
                width: 96%;
                left: 2%;
                top: 15px;
                border-radius: 30px;
            }
            .logo-container img {
                height: 30px;
            }
            .location-trigger {
                font-size: 14px;
                padding: 6px 10px;
            }
            .location-modal {
                position: fixed;
                top: 75px;
                left: 50%;
                transform: translateX(-50%);
                width: 94vw;
                padding: 15px 15px 0 15px;
            }
            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .city-btn {
                padding: 8px;
                font-size: 12px;
            }
            .modal-footer {
                margin: 0 -15px;
                padding: 12px 15px;
            }
            .hero-content {
                width: 95%;
                top: 60%;
            }
            .search-widget {
                padding: 15px;
            }
            .search-input-container {
                height: 50px;
                padding: 5px;
            }
            .search-action-btn {
                padding: 0 15px;
                font-size: 14px;
            }
            .search-icon-main {
                margin: 0 10px;
                font-size: 16px;
            }
            .search-input-container input {
                font-size: 14px;
            }
            .recent-search {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-left: 0;
            }
            .suggestion-item {
                padding: 8px 12px;
                font-size: 13px;
            }
            .suggestion-badge {
                font-size: 10px;
                padding: 2px 6px;
            }
        }

/* Top Picks Section */
.top-picks-section {
    padding: 80px 5%;
    background-color: #fff;
}

.top-picks-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-picks-header {
    margin-bottom: 40px;
    text-align: left;
}

.top-picks-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.top-picks-header p {
    font-size: 16px;
    color: #666;
}

.top-picks-content {
    display: flex;
    gap: 320px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.top-picks-numbers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 0 auto;
}

.pick-number {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 20px;
    border-left: 4px solid transparent;
}

.pick-number:hover {
    color: #a0aec0;
}

.pick-number.active {
    color: #1a202c;
    border-left-color: #7c3aed;
    transform: translateX(10px);
}

.top-picks-display {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-left: 0;
}

.top-picks-image-container {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.top-pick-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-pick-img.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.top-pick-details-card {
    background: #fff;
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    border-radius: 16px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-pick-details-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.details-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 3px solid #2b70d4;
    overflow: hidden;
    padding: 4px;
}

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

.brand-info h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.2;
}

.brand-info a {
    font-size: 13px;
    color: #6338f0;
    text-decoration: underline;
    font-weight: 500;
}

.details-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.details-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.details-price {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.details-type {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.details-offer {
    background: rgba(230, 100, 150, 0.2);
    color: #222;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.offer-icon {
    color: #e31c5f;
    font-size: 14px;
}

.details-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, #6338f0, #9f7aea);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 56, 240, 0.3);
}

.details-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 56, 240, 0.5);
    background: linear-gradient(135deg, #5127d1, #8b5cf6);
}

@media (max-width: 600px) {
    .top-picks-content {
        flex-direction: column;
        gap: 30px;
        padding-left: 0;
    }
    
    .top-picks-numbers {
        flex-direction: row;
        justify-content: center;
        flex: auto;
        width: 100%;
        gap: 40px;
    }
    
    .pick-number {
        border-left: none;
        border-bottom: 4px solid transparent;
        padding-left: 0;
        padding-bottom: 10px;
        text-align: center;
    }
    
    .pick-number.active {
        border-bottom-color: #7c3aed;
        transform: translateY(-5px) scale(1.1);
    }
    
    .top-picks-display {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
        width: 100%;
    }
    
    .top-picks-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        order: 1;
    }
    
    .top-pick-details-card {
        display: none;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        opacity: 1;
        visibility: visible;
        order: 2;
    }
    
    .top-pick-details-card.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .top-picks-numbers {
        display: none !important;
    }
    .top-picks-content {
        gap: 0;
        padding-left: 0;
        justify-content: flex-start;
    }
    .top-picks-display {
        margin-left: 120px;
        width: calc(100% - 120px);
        max-width: 600px;
    }
    .top-pick-details-card {
        left: -120px;
    }
    .top-pick-details-card.active {
        transform: translateY(-50%) translateX(0);
    }
}

/* --- Property Configurations Section --- */
.property-config-section {
    padding: 80px 5%;
    background-color: #f7f9fc;
}

.pc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pc-header {
    text-align: left;
    margin-bottom: 50px;
}

.pc-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.pc-header p {
    font-size: 16px;
    color: #718096;
}

.config-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}

.config-card {
    position: relative;
    flex: 1;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.config-card.active, .config-card:hover {
    flex: 4;
}

.config-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    transition: all 0.5s ease;
}

.config-card:hover .config-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
}

.config-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.config-title-vertical {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    mix-blend-mode: normal;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0,0,0,0.5);
    white-space: nowrap;
    transition: all 0.5s ease;
    letter-spacing: 3px;
}

.config-card:hover .config-title-vertical, .config-card.active .config-title-vertical {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.config-details {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.config-card:hover .config-details, .config-card.active .config-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.config-details h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.config-details p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.config-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.config-explore i {
    transition: transform 0.3s ease;
}

.config-explore:hover i {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .config-accordion {
        flex-direction: column;
        height: 700px;
    }
    
    .config-title-vertical {
        bottom: auto;
        top: 50%;
        left: 30px;
        transform: translateY(-50%);
    }
    
    .config-card:hover .config-title-vertical, .config-card.active .config-title-vertical {
        transform: translateY(-50%) translateX(-20px);
    }
}

/* Contact Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content.contact-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 440px;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255,255,255,1);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: #64748b;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.close-modal-btn:hover {
    background: #ffffff;
    color: #0f172a;
    transform: rotate(90deg) scale(1.1);
}

.modal-header-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 26px;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.8), 0 8px 20px rgba(124, 58, 237, 0.15);
    border: 2px solid #ffffff;
}

.contact-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.5px;
}

.contact-modal-subtitle {
    font-size: 14px;
    color: #475569;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    color: #7c3aed;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid #cbd5e1;
    border-radius: 0;
    font-size: 16px;
    color: #1e293b;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.input-group input::placeholder {
    color: #64748b;
    transition: color 0.3s ease;
}

.input-group input:focus {
    background: transparent;
    border-bottom-color: #7c3aed;
    outline: none;
    padding-left: 32px;
}

.input-group input:focus::placeholder {
    color: #94a3b8;
}

.input-group:focus-within .input-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7c3aed;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
}

.checkbox-group label {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
}

.submit-contact-btn {
    background: linear-gradient(135deg, #6338f0, #9f7aea);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-contact-btn:hover {
    background: linear-gradient(135deg, #5127d1, #8b62d8);
    box-shadow: 0 10px 20px -5px rgba(99, 56, 240, 0.4);
}

.submit-contact-btn:active {
    transform: translateY(0);
}
/* Research and Insights Section */
.research-insights-section {
    padding: 80px 5%;
    background-color: #f9fafc;
}

.research-insights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.research-header {
    margin-bottom: 40px;
    text-align: left;
}

.research-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.research-header p {
    font-size: 16px;
    color: #666;
}

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

.insight-card {
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 30px 15px;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-bg-top {
    width: 100%;
    height: 180px;
    border-radius: 25px;
}

.card-content-bottom {
    text-align: center;
    padding: 20px 20px 0;
}

.card-content-bottom h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-content-bottom h3 i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.insight-card:hover .card-content-bottom h3 i {
    transform: translateX(3px);
}

.card-content-bottom p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .insights-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insights-cards-grid > div:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .insights-cards-grid {
        grid-template-columns: 1fr;
    }
    .insights-cards-grid > div:last-child {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

/* High Demand Section */
.high-demand-section {
    padding: 60px 5%;
    background-color: #fcfcfc;
}

.high-demand-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.hd-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.hd-header p {
    font-size: 16px;
    color: #666;
}

.hd-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

.hd-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.ltr-track {
    animation: marquee-ltr 25s linear infinite;
}

.rtl-track {
    animation: marquee-rtl 25s linear infinite;
}

.hd-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

@keyframes marquee-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.hd-card {
    flex: 0 0 450px;
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
}

.hd-card-img {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hd-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.hd-card-content {
    width: 55%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hd-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.hd-builder {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.hd-type, .hd-location {
    font-size: 15px;
    color: #444;
    margin-bottom: 5px;
}

.hd-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 12px;
}

@media (max-width: 992px) {
    .high-demand-section {
        padding: 50px 4%;
    }
    .hd-header h2 {
        font-size: 26px;
    }
    .hd-card {
        flex: 0 0 380px;
    }
    .hd-card-content h3 {
        font-size: 18px;
    }
    .hd-price {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .high-demand-section {
        padding: 40px 15px;
    }
    .hd-header {
        margin-bottom: 20px;
        text-align: center;
    }
    .hd-header h2 {
        font-size: 22px;
    }
    .hd-header p {
        font-size: 15px;
    }
    .hd-marquee-wrapper {
        gap: 15px;
    }
    .hd-marquee-track {
        gap: 15px;
    }
    .hd-card {
        flex: 0 0 280px;
        flex-direction: column;
    }
    .hd-card-img {
        width: 100%;
        height: 180px;
    }
    .hd-card-content {
        width: 100%;
        padding: 16px;
    }
    .hd-card-content h3 {
        font-size: 17px;
        margin-bottom: 2px;
    }
    .hd-builder {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .hd-type, .hd-location {
        font-size: 13px;
        margin-bottom: 3px;
    }
    .hd-price {
        font-size: 17px;
        margin-top: 10px;
    }
}

/* Recommended Properties Section */
.recommended-section {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.recommended-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recommended-header {
    margin-bottom: 40px;
    text-align: left;
}

.recommended-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.recommended-header p {
    font-size: 16px;
    color: #666;
}

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

/* Responsive Grid */
@media (max-width: 900px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .recommended-grid > div:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .recommended-grid {
        grid-template-columns: 1fr;
    }
    .recommended-grid > div:last-child {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

/* Card Design */
.rec-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

.rec-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: #d8b4fe;
}

.rec-card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.rec-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.rec-card:hover .rec-card-image-wrapper::after {
    opacity: 1;
}

.rec-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rec-card:hover .rec-card-image {
    transform: scale(1.08);
}

.rec-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rec-status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.pulsing-construction {
    background-color: #e67e22;
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    animation: pulse-orange 1.5s infinite;
}

.status-dot.pulsing-ready {
    background-color: #27ae60;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(230, 126, 34, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.status-text {
    font-size: 13px;
    font-weight: 600;
}

.status-text.construction {
    color: #e67e22;
}

.status-text.ready {
    color: #27ae60;
}

.rec-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.rec-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rec-price {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    margin-top: auto;
}

.rec-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.rec-area-pill {
    background-color: #f0fdf4;
    color: #15803d;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.rec-action-btn {
    background-color: #f5f0ff;
    color: #7c3aed;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rec-action-btn i {
    transition: transform 0.2s ease;
}

.rec-card:hover .rec-action-btn {
    background-color: #ede9fe;
    color: #6d28d9;
    transform: scale(1.08);
}

.rec-card:hover .rec-action-btn i {
    transform: translateX(2px);
}

/* --- New Launches Section --- */
.new-launches-section {
    padding: 80px 5%;
    background-color: #f7f9fc;
}

.nl-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.nl-header-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.nl-header-text p {
    font-size: 16px;
    color: #718096;
}

.nl-explore-btn {
    background: linear-gradient(135deg, #6338f0, #9f7aea);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nl-explore-btn:hover {
    background: linear-gradient(135deg, #5127d1, #8b62d8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 56, 240, 0.3);
}

.nl-carousel-wrapper {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.nl-carousel {
    overflow: hidden;
    padding-bottom: 20px;
    width: 100%;
}

.nl-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-left 25s linear infinite;
}

.nl-carousel:hover .nl-carousel-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.nl-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.nl-card {
    flex: 0 0 384px;
    width: 384px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.nl-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.nl-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nl-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.nl-location {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 20px;
}

.nl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.nl-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.nl-know-more {
    background: linear-gradient(135deg, #6338f0, #9f7aea);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nl-know-more:hover {
    background: linear-gradient(135deg, #5127d1, #8b62d8);
    box-shadow: 0 4px 10px rgba(99, 56, 240, 0.2);
}

.nl-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ebf4ff;
    color: #3b82f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 10;
}

.nl-nav-btn:hover {
    background-color: #3b82f6;
    color: white;
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

@media (max-width: 1024px) {
    .nl-card {
        flex: 0 0 320px;
        width: 320px;
    }
}

@media (max-width: 768px) {
    .nl-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    .nl-nav-btn {
        display: none; /* Hide buttons on mobile, rely on touch swipe */
    }
    
    .nl-card {
        flex: 0 0 280px;
        width: 280px;
    }

    /* Fix New Launches Card Footer Alignment on Mobile */
    .nl-card-footer {
        gap: 10px;
    }
    .nl-price {
        font-size: 16px;
    }
    .nl-know-more {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Global Section Heading Mobile Adjustments */
    .top-picks-header h2,
    .pc-header h2,
    .research-header h2,
    .hd-header h2,
    .recommended-header h2,
    .nl-header-text h2 {
        font-size: 28px !important;
        text-align: left !important;
    }
    
    .top-picks-header p,
    .pc-header p,
    .research-header p,
    .hd-header p,
    .recommended-header p,
    .nl-header-text p {
        font-size: 14px !important;
        text-align: left !important;
    }

    .top-picks-header,
    .pc-header,
    .research-header,
    .hd-header,
    .recommended-header,
    .nl-header-text {
        text-align: left;
        align-items: flex-start;
    }
}
/* --- Scroll Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.reveal-fade.active {
    opacity: 1;
}

/* Stagger delays for multiple items */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

@media (max-width: 768px) { .hero-bg-text { font-size: 8.5vw !important; white-space: nowrap !important; } }

/* Custom Toast Popup */
.custom-toast-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-toast-overlay.active {
    opacity: 1;
    visibility: visible;
}
.custom-toast-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05) inset;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.custom-toast-overlay.active .custom-toast-box {
    transform: scale(1) translateY(0);
}
.custom-toast-icon {
    width: 80px; height: 80px;
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.2);
    position: relative;
}
.custom-toast-icon::after {
    content: "";
    position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(52, 211, 153, 0.5);
    animation: toastPulse 2s infinite;
}
@keyframes toastPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}
.custom-toast-title {
    color: #1e293b;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
}
.custom-toast-message {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}
.custom-toast-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -10px rgba(139, 92, 246, 0.6);
    width: 100%;
}
.custom-toast-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(139, 92, 246, 0.8);
}
