/* css/slide_banner.css - ADVANCED 3D VERSION */
.slide-banner {
    margin-top: 140px;
    position: relative;
    height: 65vh;
    min-height: 450px;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateZ(0);
    will-change: transform;
}

.slide.active {
    opacity: 1;
}

/* Slide Background Effects */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.2) 0%, transparent 50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    align-items: center;
}

.content-wrapper {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #ffd89b, #19547b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #ffd89b, #19547b);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Slide 1 Specific Styles */
.slide-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature i {
    color: #ffd89b;
}

/* Slide 2 Specific Styles */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.tech-item i {
    font-size: 1.5rem;
    color: #ffd89b;
}

.tech-item span {
    font-weight: 600;
}

/* Slide 3 Specific Styles */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd89b;
    width: 40px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Slide Buttons */
.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd89b, #19547b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 216, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-button::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: left 0.5s;
}

.slide-button:hover::before {
    left: 100%;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 216, 155, 0.4);
}

.slide-button:active {
    transform: translateY(-1px);
}

.hosting-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hosting-btn:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.contact-btn:hover {
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

/* Slide Visual Elements */
.slide-visual {
    position: relative;
    height: 300px;
    animation: slideInRight 0.8s ease-out 0.5s both;
}

/* Slide 1 Visual - Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-1 {
    top: 20px;
    right: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    right: 150px;
    animation-delay: 2s;
}

.card-3 {
    top: 220px;
    right: 80px;
    animation-delay: 4s;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.card-content i {
    font-size: 2rem;
    color: #ffd89b;
    margin-bottom: 0.5rem;
}

.card-content span {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Slide 2 Visual - Server Animation */
.server-animation {
    position: relative;
    width: 200px;
    height: 300px;
    margin: 0 auto;
}

.server-rack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.server-blade {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: serverGlow 2s ease-in-out infinite;
}

.server-blade:nth-child(1) {
    top: 20px;
    animation-delay: 0s;
}

.server-blade:nth-child(2) {
    top: 70px;
    animation-delay: 0.5s;
}

.server-blade:nth-child(3) {
    top: 120px;
    animation-delay: 1s;
}

.server-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd89b, transparent);
    animation: networkFlow 3s linear infinite;
}

.line:nth-child(1) {
    top: 30%;
    width: 100px;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 50%;
    width: 150px;
    animation-delay: 1s;
}

.line:nth-child(3) {
    top: 70%;
    width: 80px;
    animation-delay: 2s;
}

@keyframes serverGlow {
    0%, 100% {
        background: rgba(255, 255, 255, 0.2);
    }
    50% {
        background: rgba(255, 255, 255, 0.4);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes networkFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

/* Slide 3 Visual - Contact Animation */
.contact-animation {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.message-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-1 {
    top: 30px;
    left: 40px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 120px;
    right: 30px;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 40px;
    left: 80px;
    animation-delay: 3s;
}

.message-bubble i {
    font-size: 1.5rem;
    color: #ffd89b;
}

.connection-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.connection-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd89b;
    border-radius: 50%;
    animation: connect 2s linear infinite;
}

.connection-dots .dot:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.connection-dots .dot:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.connection-dots .dot:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.connection-dots .dot:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes connect {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Banner Navigation */
.banner-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot.active::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slide Progress */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd89b, #19547b);
    width: 33.33%;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .slide-visual {
        height: 200px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-banner {
        height: 70vh;
        min-height: 500px;
        margin-top: 120px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-features {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .banner-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .card-content i {
        font-size: 1.5rem;
    }
    
    .card-content span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slide-banner {
        height: 80vh;
        min-height: 550px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 0.75rem 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 30px;
    }
}