@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00f2fe;
    --primary-alt: #4facfe;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --secondary: #9d50bb;
    --secondary-gradient: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
    --bg-dark: #030712;
    --bg-card: rgba(17, 24, 39, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    color-scheme: dark;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 242, 254, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(157, 80, 187, 0.15), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1), transparent 60%);
    z-index: -1;
    animation: pulseBg 10s ease-in-out infinite alternate;
}

@keyframes pulseBg {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Master Noise & Grid Layers */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.master-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(var(--glass-border) 1px, transparent 1px), linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

#mouse-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    will-change: transform;
}

/* Master Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary), transparent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(3, 7, 18, 0.8);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Master Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--primary-gradient);
    z-index: 2000;
    width: 0%;
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.1s ease-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    perspective: 1000px;
}

.hero-content {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -4px;
    color: white;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 242, 254, 0.5));
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-20px) rotateX(2deg) rotateY(-2deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-heading);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    box-shadow:
        0 10px 20px rgba(0, 242, 254, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05) rotateX(10deg);
    box-shadow:
        0 25px 50px rgba(0, 242, 254, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styling */
section {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 5rem;
    text-align: center;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.profile-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1/1;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.5);
}

.profile-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: 30px;
    transform: translate(15px, 15px);
    z-index: -1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: grayscale(20%);
    transition: 0.5s;
}

.profile-img:hover {
    filter: grayscale(0%);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.skill-tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-tag:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 254, 0.05);
    transform: translateY(-3px);
}

/* Grid Layouts */
.projects-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card,
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    transform-style: preserve-3d;
    position: relative;
}

.project-card {
    padding: 0;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 10px rgba(0, 242, 254, 0.3));
    transition: 0.5s;
}

.service-card:hover .service-icon {
    transform: translateZ(30px) scale(1.1);
    filter: drop-shadow(0 15px 30px rgba(0, 242, 254, 0.6));
}

.project-info {
    padding: 2rem;
}

.project-card:hover,
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-15px) rotateX(4deg) rotateY(-3deg) scale(1.02);
    box-shadow:
        15px 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Typography Helpers */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Admin Dashboard Styling */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    padding: 2rem 1.25rem;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.admin-main {
    margin-left: 260px;
    width: calc(100% - 260px);
    padding: 3rem 4rem;
}

.admin-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.admin-page-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2.2rem;
}

.sidebar-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    padding-left: 0.75rem;
    text-decoration: none;
    color: #fff;
    display: block;
}

.sidebar-menu {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 2rem;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-menu a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transform: translateX(5px);
}

.sidebar-menu a.active {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.2);
}

.sidebar-menu a.active i {
    color: var(--primary);
}

/* Form Styling */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    appearance: none;
    cursor: pointer;
    color-scheme: dark;
}

select.form-control option {
    background-color: #111827 !important;
    color: #ffffff !important;
}

/* Table Styling */
.admin-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.8rem;
}

th {
    text-align: left;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 1.2rem 1rem;
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}

td:first-child {
    border-left: 1px solid var(--glass-border);
    border-radius: 15px 0 0 15px;
}

td:last-child {
    border-right: 1px solid var(--glass-border);
    border-radius: 0 15px 15px 0;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(157, 80, 187, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(157, 80, 187, 0.2);
}

/* Supeer Impact Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Stunning Heading Glow */
.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Footer Styling */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .sidebar {
        display: none;
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
        padding: 6rem 1.5rem 2rem;
    }

    .admin-mobile-nav {
        display: flex !important;
    }

    .admin-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .admin-page-title {
        font-size: 2rem;
    }

    .admin-status-badge {
        display: none;
    }
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    /* Mobile Menu Burger */
    .menu-btn {
        display: flex !important;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }
}

/* Mobile Sidebar (Shared Component) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--glass-border);
    z-index: 2000;
    padding: 2.5rem;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-sidebar-links a,
.mobile-sidebar-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: 0.3s;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-sidebar-links li {
    list-style: none;
}

.mobile-sidebar-links a:hover,
.mobile-sidebar-links a.active {
    color: var(--primary);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.admin-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
}

/* Portfolio Status Badges & Premium Effects */
.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.project-badge.sale {
    background: rgba(0, 242, 254, 0.2);
    color: var(--primary);
    border-color: rgba(0, 242, 254, 0.3);
}

.project-badge.free {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.for-sale-glow {
    position: relative;
    border-color: rgba(0, 242, 254, 0.3) !important;
}

.for-sale-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary-gradient);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    transition: 0.5s;
}

.for-sale-glow:hover::after {
    opacity: 0.6;
    filter: blur(20px);
}

.availability-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

/* Project Tag */
.project-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}


/* --- FOR SALE PREMIUM ENHANCEMENTS --- */

/* Enhanced Sale Badge with Pulse & Shimmer */
.project-badge.sale {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.3) 0%, rgba(79, 172, 254, 0.3) 100%);
    color: #fff;
    border: 1px solid rgba(0, 242, 254, 0.5);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: saleBadgePulse 2s ease-in-out infinite alternate;
    overflow: hidden;
}

.project-badge.sale::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(35deg);
    animation: shimmerSale 3s infinite;
}

@keyframes saleBadgePulse {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 20px rgba(0, 242, 254, 0.2); }
    100% { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 30px rgba(0, 242, 254, 0.4); }
}

@keyframes shimmerSale {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Sophisticated Border Glow for Sale Projects */
.for-sale-glow {
    border: 1px solid rgba(0, 242, 254, 0.4) !important;
}

.for-sale-glow::after {
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(30px);
}

.for-sale-glow:hover::after {
    opacity: 0.3;
}

/* Premium Price Section */
.price-container {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 40px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.1), transparent 50%);
    pointer-events: none;
}

.premium-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price-digit {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 242, 254, 0.3));
    line-height: 1;
}

.contact-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    transition: 0.4s;
}

.contact-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.admin-avatar-glow {
    position: relative;
}

.admin-avatar-glow img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    border: 2px solid var(--primary);
}

.admin-avatar-glow::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(10px);
    z-index: 0;
}


/* Homepage Card Price Tag */
.card-price-tag {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}
