@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    line-height: 1.6;
    color: #e8e8e8;
    background: #0a0a0a;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.005) 2px,
            rgba(255, 255, 255, 0.005) 4px
        );
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pixel Art Elements */
.pixel-border {
    position: relative;
}

.pixel-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, #ff77c6 0px, #ff77c6 1px, transparent 1px, transparent 100%),
        linear-gradient(0deg, #ff77c6 0px, #ff77c6 1px, transparent 1px, transparent 100%);
    background-size: 10px 10px;
    opacity: 0.1;
    pointer-events: none;
}

/* Header */
header {
    background: 
        linear-gradient(135deg, #111111 0%, #0a0a0a 50%, #111111 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(255, 119, 198, 0.02) 1px,
            rgba(255, 119, 198, 0.02) 2px
        );
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    border-bottom: 2px solid #222;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: 
        repeating-linear-gradient(
            90deg,
            #ff77c6 0px,
            #ff77c6 4px,
            #7877c6 4px,
            #7877c6 8px
        );
    animation: pixelFlow 2s linear infinite;
}

@keyframes pixelFlow {
    0% { transform: translateX(-8px); }
    100% { transform: translateX(0px); }
}

header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 
        2px 2px 0px #ff77c6,
        4px 4px 0px #7877c6,
        6px 6px 0px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Navigation */
nav {
    background: rgba(10, 10, 10, 0.98);
    padding: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-brand {
    font-weight: 600;
    color: #ff77c6;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    border-right: 1px solid #222;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 30px;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    position: relative;
    font-size: 0.9rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff77c6, #7877c6);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 119, 198, 0.05);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Email Showcase Section */
#email-showcase {
    margin-bottom: 120px;
}

.email-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.email-preview-item {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.email-preview-item:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 119, 198, 0.1);
}

.email-preview-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.email-preview-item:hover img {
    transform: scale(1.05);
}

.preview-caption {
    padding: 20px;
}

.preview-caption h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-caption p {
    color: #ff77c6;
    font-size: 0.9rem;
    font-weight: 500;
}

.showcase-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 10px;
}

.showcase-cta p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

section {
    margin-bottom: 120px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: 
        repeating-linear-gradient(
            90deg,
            #ff77c6 0px,
            #ff77c6 3px,
            #7877c6 3px,
            #7877c6 6px
        );
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.05), transparent);
    transition: left 0.5s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #333;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 119, 198, 0.1);
}

.project-card:hover::before {
    left: 100%;
}

.project-image-gallery {
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(45deg, #1a1a1a, #151515);
    border-bottom: 1px solid #222;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 2px;
}

.project-image-gallery .primary-image {
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    border-right: 1px solid #333;
}

.project-image-gallery .secondary-image {
    width: 30%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.project-card:hover .project-image-gallery .primary-image,
.project-card:hover .project-image-gallery .secondary-image {
    transform: scale(1.05);
}

.project-card:hover .project-image-gallery .secondary-image {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(45deg, #1a1a1a, #151515),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 119, 198, 0.02) 2px,
            rgba(255, 119, 198, 0.02) 4px
        );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content p {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 119, 198, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff77c6, #7877c6);
    color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #7877c6, #ff77c6);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 0;
}

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

.project-links {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: linear-gradient(45deg, #333, #444);
    color: #ffffff;
}

.btn-secondary::before {
    background: linear-gradient(45deg, #444, #555);
}

.store-password {
    background: rgba(255, 119, 198, 0.05);
    padding: 8px 12px;
    border: 1px solid rgba(255, 119, 198, 0.2);
    margin-top: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.store-password strong {
    color: #ff77c6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 60px 50px;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 119, 198, 0.01) 10px,
            rgba(255, 119, 198, 0.01) 20px
        );
}

.about p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.skill-item {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.05), transparent);
    transition: left 0.4s ease;
}

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    border-color: #333;
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 119, 198, 0.1);
}

.skill-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-item p {
    color: #888;
    font-size: 0.9rem;
}

/* Main Content */
main {
    padding: 80px 0;
}

/* Footer */
footer {
    background: 
        linear-gradient(145deg, #0a0a0a, #050505);
    color: #ccc;
    padding: 80px 0;
    border-top: 1px solid #222;
    margin-top: 120px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: 
        repeating-linear-gradient(
            90deg,
            #ff77c6 0px,
            #ff77c6 3px,
            #7877c6 3px,
            #7877c6 6px
        );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-cta {
    text-align: left;
}

.footer-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-cta p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #888;
}

.footer-info p:first-child {
    color: #ff77c6;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #222;
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 20px 30px;
        text-align: center;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-text h1 {
        font-size: 2.4rem;
    }
    
    .headline {
        font-size: 1.2rem;
    }
    
    .header-cta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .header-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .email-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image-gallery {
        height: 180px;
        flex-direction: column;
        gap: 1px;
    }
    
    .project-image-gallery .primary-image {
        width: 100%;
        height: 70%;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .project-image-gallery .secondary-image {
        width: 100%;
        height: 30%;
    }
    
    .about {
        padding: 40px 30px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .project-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        text-align: center;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .footer-cta h3 {
        font-size: 1.6rem;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff77c6, #7877c6);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #7877c6, #ff77c6);
}

/* Selection */
::selection {
    background: rgba(255, 119, 198, 0.2);
    color: #ffffff;
}

/* Glitch Effect for Headers */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

header h1:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Package Deals Section */
#packages {
    margin-bottom: 120px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-card.featured {
    border-color: #ff77c6;
    box-shadow: 
        0 15px 50px rgba(255, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.05), transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: #333;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 119, 198, 0.1);
}

.package-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 70px rgba(255, 119, 198, 0.3),
        0 0 40px rgba(255, 119, 198, 0.2);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, #ff77c6, #7877c6);
    color: #000000;
    padding: 8px 45px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 119, 198, 0.4);
}

.package-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 5;
}

.package-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ff77c6;
    text-shadow: 0 0 20px rgba(255, 119, 198, 0.4);
}

.price-period {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-content {
    padding: 30px;
    position: relative;
    z-index: 5;
}

.package-description {
    text-align: center;
    margin-bottom: 30px;
}

.package-description p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff77c6, #7877c6);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #ccc;
    font-weight: 500;
    line-height: 1.4;
}

.package-cta {
    text-align: center;
}

.package-cta .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
}

.package-footer {
    margin-top: 80px;
    text-align: center;
}

.package-guarantee {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 15px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 119, 198, 0.03) 0%, transparent 70%);
}

.package-guarantee h4 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.package-guarantee p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.package-guarantee .btn {
    position: relative;
    z-index: 2;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Profile Section Enhanced */
.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff77c6;
    box-shadow: 
        0 0 30px rgba(255, 119, 198, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    flex-shrink: 0;
}

.profile-text {
    flex: 1;
    text-align: left;
}

.profile-text h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 0px #ff77c6,
        4px 4px 0px #7877c6,
        6px 6px 0px rgba(0, 0, 0, 0.5);
}

.headline {
    font-size: 1.4rem;
    color: #ff77c6;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subheadline {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.header-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .package-header {
        padding: 30px 20px 15px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .package-content {
        padding: 25px;
    }
    
    .package-guarantee {
        padding: 40px 25px;
    }
    
    .package-guarantee h4 {
        font-size: 1.4rem;
    }
}

/* ADD THIS TO THE END OF YOUR EXISTING style.css */

/* Simplified Project Cards */
.project-image {
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(45deg, #1a1a1a, #151515);
    border-bottom: 1px solid #222;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-metrics {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.project-metrics span {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 119, 198, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Simplified Package Cards */
#packages {
    margin-bottom: 120px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-card.featured {
    border-color: #ff77c6;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 119, 198, 0.1);
}

.package-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #ff77c6, #7877c6);
    color: #000000;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
}

.package-header {
    padding: 30px 20px 15px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.package-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff77c6;
    text-shadow: 0 0 20px rgba(255, 119, 198, 0.4);
}

.package-content {
    padding: 25px;
}

.package-content p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-content li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
}

.package-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff77c6;
    font-weight: bold;
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content .btn {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
}

.package-footer {
    margin-top: 60px;
    text-align: center;
}

.package-guarantee {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-guarantee h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-guarantee p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .package-header {
        padding: 25px 15px 10px;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-guarantee {
        padding: 30px 20px;
    }
    
    .package-guarantee h4 {
        font-size: 1.2rem;
    }
}
