/* Clean Mobile Design - White & Corporate Green */

/* Clean Color Palette */
:root {
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-green-light: #d1fae5;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

/* Force Override for Mobile Login Button */
@media (max-width: 768px) {
    a.mobile-login-btn,
    .mobile-login-btn {
        background: #10b981 !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 12px 20px !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
        transition: all 0.2s ease !important;
        margin-right: 16px !important;
        min-width: 100px !important;
        justify-content: center !important;
        text-decoration: none !important;
        gap: 8px !important;
    }
    
    a.mobile-login-btn:hover,
    .mobile-login-btn:hover {
        background: #059669 !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
        text-decoration: none !important;
    }
    
    a.mobile-login-btn i,
    .mobile-login-btn i {
        font-size: 12px !important;
        color: #ffffff !important;
    }
    
    a.mobile-login-btn span,
    .mobile-login-btn span {
        color: #ffffff !important;
        font-weight: 600 !important;
    }
}

/* Clean Mobile Design */
@media (max-width: 768px) {
    body {
        background: var(--gray-50);
        min-height: 100vh;
        font-family: 'Shabnam', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Clean Header */
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-sm);
        padding: 12px 20px;
        height: 60px;
    }
    
    .mobile-header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }
    
    .mobile-back-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-700);
        font-size: 18px;
        transition: all 0.2s ease;
    }
    
    .mobile-back-btn i {
        color: var(--gray-700);
        font-size: 18px;
    }
    
    .mobile-back-btn:hover {
        background: var(--gray-200);
        transform: scale(1.05);
    }
    
    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        color: var(--gray-900);
        font-weight: 700;
        font-size: 18px;
    }
    
    .mobile-logo img {
        width: 28px;
        height: 28px;
        margin-left: 8px;
    }
    
    .mobile-share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-700);
        font-size: 16px;
        transition: all 0.2s ease;
    }
    
    .mobile-share-btn i {
        color: var(--gray-700);
        font-size: 16px;
    }
    
    .mobile-share-btn:hover {
        background: var(--gray-200);
        transform: scale(1.05);
    }
    
    /* Main Content */
    .mobile-content {
        padding-top: 80px;
        padding-bottom: 140px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Clean Image Gallery */
    .mobile-image-gallery {
        margin-bottom: 24px;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background: var(--white);
    }
    
    .mobile-image-gallery .swiper-slide {
        height: 280px;
        position: relative;
    }
    
    .mobile-image-gallery .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-image-gallery .swiper-pagination {
        bottom: 16px;
    }
    
    .mobile-image-gallery .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .mobile-image-gallery .swiper-pagination-bullet-active {
        background: var(--primary-green);
        transform: scale(1.2);
    }
    
    .mobile-image-count {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.7);
        color: var(--white);
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 10;
    }
    
    /* Clean Cards */
    .mobile-card {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        padding: 20px;
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-sm);
        transition: all 0.2s ease;
    }
    
    .mobile-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }
    
    /* Clean Title */
    .mobile-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    /* Clean Info Grid */
    .mobile-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-info-item {
        background: var(--gray-50);
        border-radius: var(--border-radius);
        padding: 16px 12px;
        text-align: center;
        border: 1px solid var(--gray-200);
        transition: all 0.2s ease;
    }
    
    .mobile-info-item:hover {
        background: var(--primary-green-light);
        border-color: var(--primary-green);
        transform: translateY(-1px);
    }
    
    .mobile-info-icon {
        font-size: 24px;
        margin-bottom: 8px;
        color: var(--primary-green);
    }
    
    .mobile-info-label {
        font-size: 11px;
        color: var(--gray-600);
        font-weight: 600;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-info-value {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-900);
    }
    
    /* Clean Location */
    .mobile-location {
        display: flex;
        align-items: center;
        background: var(--gray-50);
        padding: 12px 16px;
        border-radius: var(--border-radius);
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
    }
    
    .mobile-location-icon {
        color: var(--primary-green);
        font-size: 16px;
        margin-left: 8px;
    }
    
    .mobile-location-text {
        color: var(--gray-700);
        font-weight: 600;
        font-size: 14px;
    }
    
    /* Clean Description */
    .mobile-description {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
    }
    
    .mobile-description-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }
    
    .mobile-description-title i {
        margin-left: 8px;
        color: var(--primary-green);
    }
    
    .mobile-description-text {
        color: var(--gray-700);
        line-height: 1.6;
        font-size: 14px;
    }
    
    /* Clean Features */
    .mobile-features {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
    }
    
    .mobile-features-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }
    
    .mobile-features-title i {
        margin-left: 8px;
        color: var(--primary-green);
    }
    
    .mobile-features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .mobile-feature-item {
        display: flex;
        align-items: center;
        background: var(--gray-50);
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid var(--gray-200);
        transition: all 0.2s ease;
    }
    
    .mobile-feature-item:hover {
        background: var(--primary-green-light);
        border-color: var(--primary-green);
        transform: translateX(2px);
    }
    
    .mobile-feature-item i {
        color: var(--primary-green);
        font-size: 14px;
        margin-left: 8px;
    }
    
    .mobile-feature-text {
        color: var(--gray-700);
        font-size: 13px;
        font-weight: 500;
    }
    
    /* Clean Price Card */
    .mobile-price-card {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        animation: slideUpClean 0.3s ease-out;
    }
    
    .mobile-price-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-price-info {
        flex: 1;
    }
    
    .mobile-price-amount {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary-green);
        margin-bottom: 4px;
    }
    
    .mobile-price-label {
        font-size: 12px;
        color: var(--gray-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-price-deposit {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--gray-200);
    }
    
    .mobile-price-deposit-label {
        font-size: 10px;
        color: var(--gray-500);
        margin-bottom: 2px;
    }
    
    .mobile-price-deposit-amount {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-900);
    }
    
    
    /* Clean Animations */
    @keyframes slideUpClean {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-card {
        animation: fadeInUp 0.4s ease-out;
    }
    
    .mobile-card:nth-child(1) { animation-delay: 0.1s; }
    .mobile-card:nth-child(2) { animation-delay: 0.2s; }
    .mobile-card:nth-child(3) { animation-delay: 0.3s; }
    .mobile-card:nth-child(4) { animation-delay: 0.4s; }
    
    /* Clean Lock Overlay */
    .lock-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        border-radius: var(--border-radius-lg);
    }
    
    .lock-overlay-content {
        text-align: center;
        color: var(--white);
        padding: 24px;
        max-width: 280px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius-lg);
        backdrop-filter: blur(10px);
    }
    
    .lock-overlay-icon {
        font-size: 48px;
        margin-bottom: 16px;
        color: var(--primary-green);
    }
    
    .lock-overlay-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .lock-overlay-text {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .lock-overlay-btn {
        background: var(--primary-green) !important;
        color: var(--white) !important;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: var(--shadow-sm);
        transition: all 0.2s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .lock-overlay-btn:hover {
        background: var(--primary-green-dark) !important;
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
        text-decoration: none;
    }
    
    .lock-overlay-btn i {
        color: var(--white) !important;
    }
}

/* Desktop Styles Remain Unchanged */
@media (min-width: 769px) {
    body {
        background: var(--gray-50);
    }
    
    .mobile-header,
    .mobile-price-card {
        display: none;
    }
    
    .mobile-content {
        padding-top: 0;
        padding-bottom: 0;
    }
}
