/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #BC5DF0 !important;
}

.navbar-nav .nav-link {
    color: #BC5DF0 !important;
    font-size: 18px;
    font-weight: 400;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px #BC5DF0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #BC5DF0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 100px 100px, 150px 150px;
    animation: shimmer 8s linear infinite;
}

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

@keyframes shimmer {
    0% { background-position: 0% 0%, 0% 0%; }
    100% { background-position: 100% 100%, -100% -100%; }
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 76.8px;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(188, 93, 240, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.btn-hero {
    background-color: #BC5DF0;
    color: #ffffff;
    border-radius: 48px;
    padding: 8px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero:hover {
    background-color: #a64dd6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 93, 240, 0.4);
    color: #ffffff;
}

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

/* Values Section */
.values-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.values-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(188, 93, 240, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BC5DF0, #a64dd6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.feature-list {
    margin-top: 2rem;
}

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

.feature-item i {
    font-size: 24px;
    color: #BC5DF0;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 30px;
}

.feature-item h5 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

.feature-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #BC5DF0;
    box-shadow: 0 0 0 0.2rem rgba(188, 93, 240, 0.25);
}

.btn-primary {
    background-color: #BC5DF0;
    border-color: #BC5DF0;
    border-radius: 48px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a64dd6;
    border-color: #a64dd6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 93, 240, 0.4);
}

.thank-you-message {
    text-align: center;
    padding: 40px;
}

.thank-you-message i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.thank-you-message h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: #BC5DF0;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #BC5DF0;
}

.contact-info p {
    margin-bottom: 10px;
    color: #cccccc;
}

.contact-info i {
    color: #BC5DF0;
    width: 20px;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(188, 93, 240, 0.2);
}

.pricing-card.featured {
    border: 3px solid #BC5DF0;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #BC5DF0;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 900;
    color: #BC5DF0;
    margin-bottom: 5px;
}

.pricing-header .period {
    color: #666;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

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

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle h2 {
        font-size: 24px;
    }
    
    .hero-subtitle .lead {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .values-section h3 {
        font-size: 24px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}
