/**
 * Knipsdings - Landing Page Stylesheet
 */

/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .row {
    align-items: center;
}

.hero-section h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.15rem;
}

.hero-section .text-primary {
    color: #88a4f7 !important;
    text-shadow: 2px 2px 8px rgba(102, 126, 234, 0.5);
}

.hero-section small {
    color: #b0b0b0;
}

.hero-stat {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(136, 164, 247, 0.6);
}

.hero-stat-label {
    color: #d0d0d0 !important;
    font-weight: 500;
}

/* Hero Carousel */
.hero-carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel-wrapper .carousel-item img {
    border-radius: 20px;
    height: 600px;
    object-fit: cover;
}

.hero-carousel-wrapper .carousel-control-prev,
.hero-carousel-wrapper .carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.hero-carousel-wrapper:hover .carousel-control-prev,
.hero-carousel-wrapper:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel-wrapper .carousel-control-prev-icon,
.hero-carousel-wrapper .carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-carousel-wrapper .carousel-indicators {
    margin-bottom: 1.5rem;
}

.hero-carousel-wrapper .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-carousel-wrapper .carousel-indicators button.active {
    background-color: #667eea;
    border-color: #667eea;
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.package-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80px;
    justify-content: center;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.package-card:last-child .price .amount {
    font-size: 1.8rem;
}

.price .period {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.package-features li.text-muted {
    opacity: 0.6;
}

.package-features li.text-muted i {
    color: #6c757d;
}

.package-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.package-features i {
    color: #28a745;
    margin-right: 0.5rem;
}

.package-body .btn {
    margin-top: auto;
}

/* Demo Steps */
.demo-steps {
    position: relative;
}

.step-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.browser-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
}

.browser-dots span:nth-child(2) {
    background: #ffc107;
}

.browser-dots span:nth-child(3) {
    background: #28a745;
}

.browser-url {
    background: white;
    padding: 0.25rem 1rem;
    border-radius: 5px;
    flex: 1;
    color: #6c757d;
    font-size: 0.9rem;
}

.browser-content {
    background: #f8f9fa;
}

/* Contact Section */
.contact-info .contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-info i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding-top: 110px;
        padding-bottom: 40px;
    }
    
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-carousel-wrapper {
        margin-top: 2rem;
    }
    
    .hero-carousel-wrapper .carousel-item img {
        height: 400px;
    }
    
    .package-badge {
        padding: 3px 30px;
        font-size: 0.75rem;
    }
    
    .gallery-grid-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .hero-carousel-wrapper .carousel-item img {
        height: 300px;
    }
    
    .gallery-grid-item img {
        height: 180px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Event Gallery Section */
.gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.1);
}

/* Utilities */
.text-light-emphasis {
    opacity: 0.8;
}

.text-light-emphasis:hover {
    opacity: 1;
}

