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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
    color: #ffffff !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: #00d4aa;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 400;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #00d4aa !important;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons i {
    color: #ffffff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    color: #00d4aa;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.alpha-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin: 2rem 0;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.intro-content .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Dashboard Section */
.dashboard-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-card .emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.welcome-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.queries-section {
    padding-left: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.view-all, .browse-catalog {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover, .browse-catalog:hover {
    color: #00b894;
}

.query-card, .featured-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.query-card:hover, .featured-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.query-card h5, .featured-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.query-meta, .card-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
}

.status-indicator.active {
    background: #00d4aa;
}

.chart-placeholder {
    height: 60px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-yellow {
    background: linear-gradient(45deg, #ffd93d, #ff9f43);
}

.chart-blue {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
}

.chart-green {
    background: linear-gradient(45deg, #00d4aa, #00b894);
}

.chart-red {
    background: linear-gradient(45deg, #ff7675, #e84393);
}

.chart-mountain {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
}

.featured-section {
    margin-top: 3rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-label {
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-bar i {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.demo-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-image {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    position: relative;
}

.champions-league::after {
    content: "🏆";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.demo-text h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.demo-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-feed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-item:last-child {
    margin-bottom: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4aa, #00b894);
    flex-shrink: 0;
}

.feed-content {
    flex: 1;
}

.feed-content strong {
    color: #ffffff;
    font-weight: 600;
}

.feed-title {
    color: #00d4aa;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.experience-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 3rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.advantage-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.pricing-details {
    text-align: left;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4aa;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list i {
    color: #00d4aa;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #00d4aa;
    text-decoration: none;
}

.contact-info a:hover {
    color: #00b894;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .queries-section {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .feature-card, .advantage-card, .pricing-card {
        padding: 2rem;
    }
    
    .dashboard-container {
        padding: 1.5rem;
    }
}

/* Button Styles */
.btn-primary {
    background: #00d4aa;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
}

.btn-primary:hover {
    background: #00b894;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Hover Effects */
.query-card:hover .chart-placeholder,
.featured-card:hover .chart-placeholder {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

/* Pricing Page Styles */
.pricing-calculator-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.slider-container {
    margin: 30px 0;
}

.form-range {
    background: transparent;
    height: 6px;
}

.form-range::-webkit-slider-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.form-range::-webkit-slider-thumb {
    background: #00d4ff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.current-value {
    color: #00d4ff;
    font-weight: 600;
}

.pricing-breakdown {
    margin: 30px 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item .label {
    color: rgba(255, 255, 255, 0.8);
}

.breakdown-item .value {
    color: #ffffff;
    font-weight: 600;
}

.breakdown-item .total {
    color: #00d4ff;
    font-size: 1.2em;
}

.pricing-note {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.pricing-note i {
    color: #00d4ff;
    margin-right: 8px;
}

.pricing-plans-section {
    padding: 80px 0;
}

.pricing-plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
}

.pricing-plan-card.featured {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4ff;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.plan-price {
    margin: 20px 0;
}

.plan-price .price {
    font-size: 2.5em;
    font-weight: 700;
    color: #00d4ff;
}

.plan-price .price-unit {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: #00d4ff;
    margin-right: 10px;
    width: 16px;
}

.value-proposition-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 24px;
    color: #00d4ff;
}

.faq-section {
    padding: 80px 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 8px;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 20px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #ffffff;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-check-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.form-check-input:checked {
    background-color: #00d4ff;
    border-color: #00d4ff;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 24px;
    color: #00d4ff;
}

.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Blog Page Styles */
.blog-categories-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-filter {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: #00d4ff;
    color: #000;
    border-color: #00d4ff;
}

.blog-posts-section {
    padding: 80px 0;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
}

.featured-post {
    border-color: #00d4ff;
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.3));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post .post-image {
    height: 300px;
}

.post-category {
    background: #00d4ff;
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
}

.post-content {
    padding: 25px;
}

.post-title {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
}

.post-title:hover {
    color: #00d4ff;
}

.featured-post .post-title {
    font-size: 1.5em;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 15px 0;
}

.read-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #ffffff;
}

.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #00d4ff;
}

.recent-post {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.recent-post a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.recent-post a:hover {
    color: #00d4ff;
}

.recent-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: #00d4ff;
}

.category-list span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.newsletter-section {
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.1);
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border: none;
    padding: 12px 25px;
}

/* Terms and Privacy Pages */
.terms-content-section,
.privacy-content-section {
    padding: 80px 0;
}

.terms-content,
.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.terms-header,
.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.terms-section,
.privacy-section {
    margin-bottom: 40px;
}

.terms-section h2,
.privacy-section h2 {
    color: #00d4ff;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.terms-section p,
.privacy-section p,
.terms-section li,
.privacy-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.terms-section ul,
.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.contact-details {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.contact-details a {
    color: #00d4ff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .pricing-plan-card {
        margin-bottom: 30px;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 15px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .calculator-card,
    .contact-form-container,
    .terms-content,
    .privacy-content {
        padding: 25px;
    }
}
