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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
}

.navbar:hover,
.navbar.show-on-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Show navbar when hovering near the top of the page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    pointer-events: none;
}

body:hover .navbar {
    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00ffff;
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    color: #0a0a0f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

.hamburger-toggle {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-toggle {
        display: block !important;
    }
    .nav-menu {
        display: none;
    }
    .nav-cta {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 70%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00ffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #00ffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #00ffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    animation: nebula-drift 20s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes nebula-drift {
    0% { transform: translateX(-20px) translateY(-10px); }
    100% { transform: translateX(20px) translateY(10px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 4rem 20px 2rem 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: glow-pulse 3s ease-in-out infinite alternate;
    width: 100%;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 50px rgba(0, 255, 255, 0.8); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-cta {
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.hero-cta.primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #0a0a0f;
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.6);
}

.hero-cta.secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-cta.secondary:hover i {
    transform: scale(1.2);
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(10, 10, 15, 0.8) 100%);
    position: relative;
}

.results-section::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="%2300ffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.results-left h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-left h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00ffff;
    font-weight: 300;
}

.results-left p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.secondary-cta {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 15px 35px;
    border-radius: 30px;
    color: #00ffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: #00ffff;
    color: #0a0a0f;
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-visual {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.growth-visual i {
    font-size: 2rem;
    color: #00ffff;
    animation: rocket-bounce 2s ease-in-out infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.growth-visual span {
    font-weight: 600;
    color: #00ffff;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: rgba(10, 10, 15, 0.9);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2rem;
    color: #0a0a0f;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Special Glow Card */
.glow-card {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.6);
    animation: glow-pulse-card 3s ease-in-out infinite alternate;
}

.glow-card:hover {
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.6);
    border-color: rgba(0, 255, 255, 0.8);
}

@keyframes glow-pulse-card {
    0% { 
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        border-color: rgba(0, 255, 255, 0.6);
    }
    100% { 
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
        border-color: rgba(0, 255, 255, 0.8);
    }
}

/* Service Block Glow - Smaller Radius */
.service-block.glow-card {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.5);
    animation: glow-pulse-service 3s ease-in-out infinite alternate;
}

.service-block.glow-card:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4), 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.7);
}

@keyframes glow-pulse-service {
    0% { 
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        border-color: rgba(0, 255, 255, 0.5);
    }
    100% { 
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
        border-color: rgba(0, 255, 255, 0.7);
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-block {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-block:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.service-icon i {
    font-size: 1.5rem;
    color: #0a0a0f;
}

.service-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-block p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: rgba(10, 10, 15, 0.95);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.9;
}

.author-info h4 {
    color: #00ffff;
    margin-bottom: 5px;
}

.author-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 120px 0;
    background: rgba(10, 10, 15, 0.95);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card > div:not(.blog-image) {
    padding: 0 40px;
}

.blog-card > div:first-of-type:not(.blog-image) {
    padding-top: 40px;
}

.blog-card > div:last-of-type {
    padding-bottom: 40px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #0a0a0f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-card h3 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.blog-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    font-size: 0.9rem;
}

.blog-author {
    color: #00ffff;
    font-weight: 500;
}

.blog-read-time {
    opacity: 0.7;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #0a0a0f;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(5, 5, 10, 0.95);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Ensure mobile menu elements don't appear in footer */
.footer .mobile-menu,
.footer .hamburger-toggle {
    display: none !important;
}

/* Prevent any navigation elements from appearing at bottom */
body > .mobile-menu:not(.active) {
    display: none !important;
}

/* Ensure navigation text doesn't leak into footer */
.footer * {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section ul li a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00ffff;
    color: #0a0a0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    opacity: 0.6;
}

/* Blog Styles */
.blog-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0a0f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #00ffff;
}

.blog-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.blog-author {
    color: #00ffff;
    font-weight: 500;
}

.blog-read-time {
    color: #888;
}

/* Blog Article Styles */
.article-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0a0f;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 1rem;
}

.article-author {
    color: #00ffff;
    font-weight: 500;
}

.article-read-time {
    color: #888;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #00ffff;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #ffffff;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.article-content blockquote {
    border-left: 4px solid #00ffff;
    padding: 20px;
    margin: 30px 0;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 5px;
    font-style: italic;
    color: #b0b0b0;
}

.article-content code {
    background: rgba(0, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #00ffff;
}

.article-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #e0e0e0;
}

/* Mobile Menu Styles - Removed obsolete styles */

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-logo {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .hamburger-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000 !important;
        pointer-events: none;
    }
    
    .mobile-menu.active {
        left: 0 !important;
        pointer-events: auto;
    }
    
    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
        margin: 1rem 0;
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #00d4ff;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #ffffff;
        font-size: 1.2rem;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .hero-content {
        padding: 4rem 20px 2rem 20px;
        padding-top: calc(4rem + 80px);
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin: 30px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
    }
    
    .results-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 50px;
        padding: 0 15px;
    }
    
    .navbar {
        height: 50px;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    

    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content {
        padding: 4rem 15px 2rem 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .results-left h2 {
        font-size: 2.5rem;
    }
    
    .results-left h3 {
        font-size: 1.5rem;
    }
}

/* Add a new breakpoint for very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0080ff, #00ffff);
}

/* Services Page Specific Styles */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

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

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 85px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.world-map {
    margin-bottom: 40px;
}

.map-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    opacity: 0.8;
}

.contact-details {
    space-y: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.5;
}



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

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-header p {
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

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

.submit-btn {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    color: #0a0a0f;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
    background: linear-gradient(45deg, #00e6e6, #0073e6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Tabs */
.contact-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.tab-btn.active {
    color: #00ffff;
    border-bottom-color: #00ffff;
}

.tab-btn:hover {
    color: #ffffff;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Consultation Form Styles */
.consultation-booking {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    display: flex;
    flex-direction: column;
}

.consultation-form label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.consultation-form input,
.consultation-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.consultation-form input:focus,
.consultation-form select:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.consultation-form input::placeholder {
    color: #666;
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Calendar Booking in Consultation */
.consultation-booking .calendar-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation-booking .calendar-booking {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 12px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .tab-btn.active {
        border-bottom-color: #00ffff;
    }
    
    .map-image {
        height: 150px;
    }
}

/* Calendar Section Styles */
.calendar-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 50px;
}

.calendar-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendar-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calendar-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-nav h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.nav-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.calendar-grid {
    width: 100%;
}

.calendar-header-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-header {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ffff;
    padding: 10px 5px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000000;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.other-month {
    color: #666;
    opacity: 0.4;
}

.time-selection {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.time-selection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 500;
}

.time-slot:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000000;
    border-color: transparent;
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.booking-summary {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.booking-summary h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 15px;
}

.booking-summary p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.confirm-booking-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
}

.confirm-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

/* Responsive Calendar Styles */
@media (max-width: 768px) {
    .calendar-booking {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calendar-widget,
    .time-selection {
        padding: 20px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
    }
}

/* Pricing Calculator Styles */
.pricing-calculator-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-calculator-section::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="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* AWS Calculator specific styling */
.aws-calculator {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(35, 47, 62, 0.95));
}

.aws-calculator::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="awsgrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff9900" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23awsgrid)"/></svg>');
}

.pricing-calculator-section.aws-calculator .section-title {
    color: #ff9900;
}

.pricing-calculator-section.aws-calculator .calc-btn.primary {
    background: linear-gradient(135deg, #ff9900, #ff7700);
}

.pricing-calculator-section.aws-calculator .calc-btn.primary:hover {
    background: linear-gradient(135deg, #ff7700, #ff5500);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

/* Google Cloud Calculator specific styling */
.gcp-calculator {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(35, 47, 62, 0.95));
}

.gcp-calculator::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gcpgrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234285f4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gcpgrid)"/></svg>');
}

.pricing-calculator-section.gcp-calculator .section-title {
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-calculator-section.gcp-calculator .calc-btn.primary {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.pricing-calculator-section.gcp-calculator .calc-btn.primary:hover {
    background: linear-gradient(135deg, #3367d6, #2d8f47);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

/* Smartsite Calculator Specific Styles */
.smartsite-calculator {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 30px 30px;
}

.smartsite-calculator .section-title {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smartsite-calculator .calc-btn.primary {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
}

.smartsite-calculator .calc-btn.primary:hover {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.pricing-calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.calculator-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.calculator-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.calculator-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.service-categories {
    space-y: 25px;
}

.category-group {
    margin-bottom: 25px;
}

.category-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-options {
    space-y: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.95rem;
}

.service-option:hover {
    color: #00ffff;
}

.service-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.service-option input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-color: transparent;
}

.service-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.calculator-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selected-services {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-height: 200px;
}

.selected-services h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-list {
    min-height: 150px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: #666;
    text-align: center;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgba(0, 255, 255, 0.3);
}

.service-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-item-info p {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.service-item-cost {
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.remove-service {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4444;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.remove-service:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

/* Website Pricing Calculator Styles */
.website-pricing-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.website-pricing-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.website-pricing-calculator .section-title {
    background: linear-gradient(45deg, #00ffff, #0080ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 15px;
}

.website-pricing-calculator .calc-btn.primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #0a0a0f;
}

.website-pricing-calculator .calc-btn.primary:hover {
    background: linear-gradient(45deg, #00e6e6, #0073e6);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

/* Radio button styling for website packages - hidden, using checkmark styling */
.website-pricing-calculator input[type="radio"] {
    display: none;
}

.website-pricing-calculator input[type="radio"] + .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.website-pricing-calculator input[type="radio"]:checked + .checkmark {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-color: transparent;
}

.website-pricing-calculator input[type="radio"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.website-pricing-calculator .service-option:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
}

.website-pricing-calculator .cost-item.total {
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.website-pricing-calculator .cost-item.total .cost-value {
    color: #00ffff;
    font-size: 1.3rem;
}

/* Responsive Design for Website Pricing Calculator */
@media (max-width: 768px) {
    .website-pricing-calculator .calculator-container {
        flex-direction: column;
    }
    
    .website-pricing-calculator .calculator-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .website-pricing-calculator .calculator-main {
        width: 100%;
    }
    
    .website-pricing-calculator .service-option {
        padding: 15px;
    }
    
    .website-pricing-calculator .calc-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Managed IT Services Calculator Styles */
.managed-it-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.managed-it-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 128, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.managed-it-calculator .section-title {
    background: linear-gradient(45deg, #00ffff, #0080ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 15px;
}

.calculator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.services-selection h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.service-category h4 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.service-item {
    margin-bottom: 15px;
}

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

.service-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.service-checkbox:hover {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-color: #00ffff;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0f;
    font-weight: bold;
    font-size: 12px;
}

.service-info {
    flex: 1;
}

.service-name {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-price {
    display: block;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-desc {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.calculator-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.selected-services h3 {
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.selected-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 30px;
}

.selected-list::-webkit-scrollbar {
    width: 6px;
}

.selected-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.selected-list::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.3);
    border-radius: 3px;
}

.selected-service-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-service-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.selected-service-info p {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.selected-service-cost {
    color: #00ffff;
    font-weight: 600;
    font-size: 1rem;
}

.cost-breakdown {
    margin-bottom: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

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

.cost-item.discount {
    color: #00ff88;
}

.cost-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 10px;
}

.cost-item.annual {
    color: #ffaa00;
    font-weight: 600;
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-actions button {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.calculator-actions .primary-cta {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #0a0a0f;
}

.calculator-actions .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.calculator-actions .secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.calculator-actions .secondary-cta:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
}

.calculator-info {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Managed IT Calculator */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-summary {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .managed-it-calculator {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .calculator-summary {
        padding: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-checkbox {
        padding: 12px;
    }
    
    .service-name {
        font-size: 0.95rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
}

/* About Page Specific Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.partner-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.partner-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.reason-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .partners-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .hero-cta {
        width: 100%;
        max-width: 300px;
    }
}

.cost-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cost-breakdown {
    margin-bottom: 30px;
}

.cost-breakdown h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.cost-item span:first-child {
    color: #b0b0b0;
    font-size: 1rem;
}

.cost-value {
    color: #00ffff;
    font-weight: 600;
    font-size: 1.2rem;
}

.calculator-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.calc-btn {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.calc-btn.primary {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000000;
}

.calc-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.calc-btn.tertiary {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

.pricing-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.pricing-disclaimer p {
    color: #ffc107;
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Pricing Calculator Styles */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-sidebar {
        order: 2;
    }
    
    .calculator-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .calculator-actions {
        flex-direction: column;
    }
    
    .calc-btn {
        justify-content: center;
        width: 100%;
    }
    
    .pricing-disclaimer p {
        flex-direction: column;
        gap: 5px;
    }
}