/* Services */
.services-unconventional {
    padding: 120px 0;
}

.service-intro {
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.services-broken-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
}

.s-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.s-item .icon-animated {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    transition: var(--transition);
    opacity: 0.3;
    filter: grayscale(1);
}

.s-item:hover .icon-animated {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1) translate(-10px, 10px);
}

/* Mini Laptop Animation */
.mini-laptop {
    width: 90px;
    position: relative;
    perspective: 1000px;
}

.laptop-screen {
    width: 90px;
    height: 55px;
    background: #050505;
    border: 3px solid #222;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.laptop-base {
    width: 102px;
    height: 6px;
    background: #333;
    margin-left: -6px;
    border-radius: 0 0 5px 5px;
}

.code-typing {
    font-family: 'Courier New', monospace;
    font-size: 7px;
    color: var(--accent-color);
    padding: 6px;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Mini Phone Animation */
.mini-phone {
    width: 45px;
    height: 80px;
    background: #050505;
    border: 3px solid #222;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    padding: 5px;
}

.app-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: appScroll 4s ease-in-out infinite;
}

.app-header {
    font-size: 6px;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    text-align: center;
}

.app-header span {
    color: var(--primary-color);
}

.app-content .bar {
    width: 100%;
    height: 2px;
    background: #222;
    margin-bottom: 2px;
    border-radius: 1px;
}

.app-content .circle {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 4px auto;
    opacity: 0.6;
}

/* UI Stack Animation */
.ui-stack {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer {
    position: absolute;
    width: 60px;
    height: 35px;
    background: rgba(184, 140, 252, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transform: rotateX(50deg) rotateZ(-45deg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer::after {
    content: '';
    width: 70%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
}

.layer-1 { top: 5px; z-index: 3; animation: layerFloat 3s infinite ease-in-out; }
.layer-2 { top: 15px; z-index: 2; animation: layerFloat 3s infinite ease-in-out 0.5s; opacity: 0.6; }
.layer-3 { top: 25px; z-index: 1; animation: layerFloat 3s infinite ease-in-out 1s; opacity: 0.3; }

.s-item:hover .layer-1 { background: var(--primary-color); color: #000; }

.s-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.s-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Portfolio Section */
.portfolio-unconventional {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
}

/* Portfolio Slider */
.works-slider-container {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    padding: 20px 0;
}

.works-slider-container::before,
.works-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.works-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.works-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: sliderScroll 60s linear infinite;
}

.works-slider-container:hover .slider-track {
    animation-play-state: paused;
}

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

/* Slider Card Overrides */
.slider-track .work-card {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.slider-track .work-card .work-img {
    height: 65%;
    padding: 30px;
}

.slider-track .work-card .work-img img {
    max-height: 120px;
}

.slider-track .work-card .work-info {
    padding: 20px;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.slider-track .work-card .work-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-unconventional {
    padding: 100px 0;
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-box.auth-box {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.contact-box.auth-box .creative-form {
    text-align: left;
    width: 100%;
}

.contact-box.auth-box .c-header {
    margin-bottom: 20px;
}

.c-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.c-header h2 span {
    color: var(--primary-color);
}

.c-header p {
    color: var(--text-dim);
}

.creative-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.creative-form input, 
.creative-form textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.creative-form input:focus, 
.creative-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

/* Packages Preview */
.packages-unconventional {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

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

.pkg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.3s;
}

.pkg-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.pkg-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.pkg-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pkg-card .pkg-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.pkg-card .pkg-price .old-price {
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-right: 10px;
}

.pkg-card .pkg-price .current-price {
    color: var(--primary-color);
}

.pkg-card .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: #000;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pkg-card .btn-primary:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.view-all-packages {
    text-align: center;
    margin-top: 50px;
}

.view-all-packages a {
    color: var(--text-dim);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.view-all-packages a:hover {
    color: #fff;
    padding-bottom: 8px;
}

/* Contact Form Components */
.user-info-badge {
    background: rgba(184, 140, 252, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 140, 252, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.user-info-badge strong {
    color: var(--primary-color);
}

.user-info-badge span {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.7;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border-color: rgba(0, 255, 157, 0.2);
}

.alert-danger {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.2);
}

/* Footer */
.footer {
    padding: 100px 0 30px;
    background: #080808;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 140, 252, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-about .footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.footer-about .footer-logo .logo-img {
    height: 45px;
    margin-right: 15px;
}

.footer-about .footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-contact-info i {
    width: 35px;
    height: 35px;
    background: rgba(184, 140, 252, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 140, 252, 0.2);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
