/* Corelix Website Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-light: #6b7280;
    --text-inverse: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1rem;
    flex-wrap: nowrap;
}

.website-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

.navbar-logo {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 24px;
    width: auto;
    color: var(--text-inverse);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    min-width: fit-content;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero .accent {
    color: var(--primary-color);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Enhanced sections */
.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-inverse);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Enhanced forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
    padding: 3rem 0 1.5rem;
}

.footer h3 {
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text-inverse);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive design */
@media (max-width: 1024px) {
    .navbar .container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin-bottom: 0.25rem;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--bg-secondary);
    }
    
    .navbar-nav .btn {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .language-btn {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Custom utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Language switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Enhanced buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
    user-select: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text-inverse);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
    text-decoration: none;
}

.btn-warning {
    background-color: var(--secondary-color);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    background-color: #d97706;
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--text-inverse);
}

/* Service-specific styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-category {
    display: inline-block;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Multi-layer pricing display */
.pricing-section {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-header {
    margin-bottom: 1rem;
}

.pricing-structure {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.pricing-monthly {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Feature list styling */
.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.features-list li:hover {
    background-color: var(--bg-secondary);
}

.features-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.features-list li span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Service detail page styles */
.service-detail-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 4rem 0 2rem;
    text-align: center;
    margin-top: -2rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.service-main-content {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.service-sidebar {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

/* Pricing calculator styles */
.calculator-controls {
    background: var(--bs-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.form-range {
    height: 8px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    border-radius: 10px;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    background: var(--bs-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.form-range::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: var(--bs-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-primary);
    text-align: center;
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-option {
    background: white;
    border: 2px solid var(--bs-border-color);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.feature-option:hover {
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.feature-option input[type="checkbox"]:checked + label {
    color: var(--bs-primary);
}

.feature-option input[type="checkbox"]:checked ~ * {
    border-color: var(--bs-primary);
    background: var(--bs-primary-bg);
}

.feature-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
}

.feature-option i {
    font-size: 1.2rem;
    color: var(--bs-primary);
}

.pricing-card {
    background: white;
    border: 2px solid var(--bs-border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.setup {
    border-color: var(--bs-info);
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
}

.pricing-card.monthly {
    border-color: var(--bs-success);
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 100%);
}

.pricing-card.extras {
    border-color: var(--bs-warning);
    background: linear-gradient(135deg, #fffaf0 0%, #fff3cd 100%);
}

.pricing-card.extras.has-extras {
    border-color: var(--bs-danger);
    background: linear-gradient(135deg, #fff5f5 0%, #f8d7da 100%);
}

.pricing-card.total {
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, var(--bs-primary-bg) 0%, #e7f1ff 100%);
    border-width: 3px;
}

.pricing-card.enterprise-custom {
    border-color: var(--bs-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-width: 3px;
    padding: 2rem;
}

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.pricing-card.setup .pricing-icon {
    color: var(--bs-info);
}

.pricing-card.monthly .pricing-icon {
    color: var(--bs-success);
}

.pricing-card.extras .pricing-icon {
    color: var(--bs-warning);
}

.pricing-card.total .pricing-icon {
    color: var(--bs-primary);
}

.pricing-card.enterprise-custom .pricing-icon {
    color: var(--bs-dark);
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.pricing-card.enterprise-custom .pricing-value {
    font-size: 1.4rem;
    color: var(--bs-primary);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--bs-muted);
    line-height: 1.4;
}

.enterprise-features {
    margin-top: 1.5rem;
    text-align: left;
}

.enterprise-features h5 {
    color: var(--bs-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.enterprise-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-features li {
    padding: 0.5rem 0;
    color: var(--bs-dark);
    position: relative;
    padding-left: 1.5rem;
}

.enterprise-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bs-success);
    font-weight: bold;
}

#results {
    background: var(--bs-light);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.recommended-plan {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--bs-success);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.business-type-display {
    background: var(--bs-primary-bg);
    border: 2px solid var(--bs-primary);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.storage-type-display {
    background: var(--bs-info-bg);
    border: 2px solid var(--bs-info);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .calculator-controls {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-value {
        font-size: 1.5rem;
    }
    
    .pricing-card.enterprise-custom {
        padding: 1.5rem;
    }
    
    .pricing-card.enterprise-custom .pricing-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .pricing-section {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

/* Hero section improvements */
.hero-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 !important;
    min-height: auto !important;
    height: auto !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.bg-gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

/* Service detail page improvements */
.service-detail-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #6366f1 100%);
    padding: 2rem 0;
    margin-top: 76px;
}

.service-detail-hero .hero-icon i {
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.service-header {
    padding: 1rem 0;
}

.service-meta .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.service-title h1 {
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Card improvements */
.card {
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
}

.card h2, .card h3 {
    color: #1f2937;
    font-weight: 600;
}

.card h2 i, .card h3 i {
    margin-right: 0.5rem;
}

/* Features grid improvements */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.feature-item i {
    color: #22c55e;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

/* Process steps improvements */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Pricing card improvements */
.pricing-card-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.pricing-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin: 1rem 0;
}

.pricing-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-pricing {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing calculator specific improvements */
.calculator-card {
    border-radius: 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}

.calculator-section {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.calculator-section:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-display {
    background: white;
    border-radius: 10px;
    padding: 1rem 2rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.value-label {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

/* Slider improvements */
.slider-container {
    margin: 2rem 0;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e2e8f0 0%, #6366f1 50%, #8b5cf6 100%);
    outline: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

/* Business and storage type badges */
.business-type, .storage-type {
    text-align: center;
    margin-top: 1rem;
}

.business-type .badge, .storage-type .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Features grid for calculator */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    border-color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.feature-checkbox {
    display: none;
}

.feature-checkbox:checked + .feature-label {
    color: #6366f1;
}

.feature-checkbox:checked ~ .feature-item,
.feature-checkbox:checked + .feature-label {
    border-color: #6366f1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    margin: 0;
}

.feature-label i {
    font-size: 1.5rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-label i {
    transform: scale(1.1);
}

/* Calculate button */
.calculate-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5855f5 0%, #7c3aed 100%);
}

/* Results section */
.results-card {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
}

.recommended-plan {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.recommended-plan h3 {
    color: #15803d;
    margin-bottom: 1rem;
}

.recommended-plan p {
    color: #16a34a;
    margin: 0;
}

/* Sidebar styling for service detail */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar .card {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

/* Responsive improvements */
@media (max-width: 1024px) {
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .pricing-card-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .calculator-section {
        padding: 1.5rem;
    }
    
    .value-display {
        padding: 0.75rem 1.5rem;
    }
    
    .value-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .process-steps .row {
        gap: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 1.75rem;
    }
    
    .pricing-value {
        font-size: 2rem;
    }
    
    .btn-pricing {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .calculate-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
} 