/* assets/css/style.css */
:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-dark: #5a67d8;
    --secondary: #f59e0b;
    --dark: #1a1a2e;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: var(--primary);
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.pricing-table thead th {
    padding: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-table tbody td {
    padding: 15px;
    vertical-align: middle;
}

.pricing-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Cards */
.service-card, .team-card, .project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover, .team-card:hover, .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
    border-radius: 25px;
    padding: 10px 25px;
}

/* Team Section */
.team-card img {
    height: 250px;
    object-fit: cover;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--secondary) !important;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Dashboard */
.dashboard-wrapper {
    display: flex;
    min-height: calc(100vh - 76px);
}

.sidebar {
    width: 280px;
    background: var(--dark);
    color: white;
    position: fixed;
    height: calc(100vh - 76px);
    overflow-y: auto;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    background: #f5f7fb;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table thead th {
        padding: 10px;
    }
    
    .pricing-table tbody td {
        padding: 8px;
    }
}