/* Global Styles */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --dark-text: #e2e8f0;
    --light-text: #64748b;
    --border-color: #334155;
}

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

html {
    scroll-behavior: smooth;
    background: var(--dark-bg);
    scroll-padding-top: 80px; /* Account for fixed navbar when scrolling to anchors */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--dark-bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.dropdown-menu {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--dark-text);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

.dropdown-item.active:hover {
    background: var(--primary-dark);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-text);
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-text);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Text-only hero styling - no images needed */
.hero-section .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .hero-title {
    margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-section .hero-buttons {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-section .hero-stats {
    margin-top: 2rem;
}

.hero-section .hero-stats .row {
    margin: 0;
}

.hero-section .hero-stats .stat-item {
    padding: 1rem;
}

.hero-section .hero-stats .stat-item h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-section .hero-stats .stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Server Builder Section */
.server-builder-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.builder-container {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.builder-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.use-case-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.use-case-card {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.use-case-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.use-case-card.selected {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.use-case-card.selected::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

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

.use-case-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.use-case-card p {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

.traffic-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.traffic-slider {
    position: relative;
    margin-bottom: 1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.traffic-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--light-text);
}

.traffic-value {
    text-align: center;
    margin-top: 1rem;
}

.traffic-value strong {
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.recommendation-panel {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.recommendation-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.confidence-meter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.confidence-text {
    font-weight: 600;
    color: var(--success-color);
}

.server-visual {
    text-align: center;
    margin-bottom: 2rem;
}

.server-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.server-visual h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.price-display {
    margin-bottom: 2rem;
}

.recommended-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--light-text);
    margin-left: 0.5rem;
}

.server-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--dark-surface);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.spec-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.recommendation-why h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.recommendation-why ul {
    list-style: none;
    margin-bottom: 2rem;
}

.recommendation-why li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.recommendation-why li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.recommendation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-actions .btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--dark-surface);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.service-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--dark-text);
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.price-tag {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.price-tag strong {
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
}

.btn-service {
    width: 100%;
    border-radius: 12px;
    padding: 0.75rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.features-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    margin-top: 2px;
}

.feature-text {
    flex: 1;
    min-width: 0;
}

.feature-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.4;
}

.feature-text p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

/* Dashboard Mockup */
.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--dark-surface);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.mockup-header {
    background: var(--dark-bg);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.mockup-title {
    font-weight: 600;
    font-size: 0.875rem;
}

.mockup-content {
    padding: 1.5rem;
}

.metric-card {
    margin-bottom: 1.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-bar {
    height: 8px;
    background: var(--dark-bg);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.pricing-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    color: var(--dark-text);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.pricing-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-logo i {
    font-size: 2rem;
    color: white;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 5rem 0;
    background: var(--dark-surface);
}

.infra-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.infra-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.infra-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.infra-card p {
    color: var(--light-text);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.testimonial-card {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.rating i {
    margin-right: 0.25rem;
}

.testimonial-content p {
    color: var(--light-text);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    margin-right: 1rem;
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.author-info span {
    color: var(--light-text);
    font-size: 0.875rem;
}

/* Performance Section */
.performance-section {
    padding: 5rem 0;
    background: var(--dark-surface);
}

.performance-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 280px;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.performance-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.performance-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.performance-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.performance-card p {
    color: var(--light-text);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.accordion-item {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-surface);
    color: var(--dark-text);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: var(--dark-surface);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--dark-surface);
    color: var(--light-text);
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--dark-surface);
}

.newsletter-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: var(--light-text);
}

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

.newsletter-form .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    border-radius: 12px 0 0 12px;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--dark-text);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
    border-left: none;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.contact-card {
    background: var(--dark-surface);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer .row {
    align-items: flex-start;
}

.footer-brand h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

.footer-brand p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.2;
}

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

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

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-section {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.footer-section h5 {
    padding-left: 0;
    margin-left: 0;
}

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

.footer-brand h4 {
    padding-left: 0;
    margin-left: 0;
}

.footer-copyright,
.footer-powered {
    color: var(--light-text);
    margin: 0;
}

/* Hero Section Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-content {
        padding: 0 1rem;
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section .hero-stats .stat-item {
        padding: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 100px; /* Account for navbar height on mobile */
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding: 2rem 0 3rem; /* Reduced top padding since hero-section now has padding-top */
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        padding: 0 2rem;
        line-height: 1.7;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
        padding: 0 2rem;
    }
    
    .hero-stats {
        margin-top: 3rem;
        padding: 0 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
        padding: 0 2rem;
    }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-icon {
        margin-top: 0;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    html {
        scroll-padding-top: 100px; /* Adjust for mobile navbar height */
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 85vh;
        padding-top: 90px; /* Account for navbar height on small mobile */
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0 2rem; /* Reduced top padding since hero-section now has padding-top */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        margin-top: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        margin-top: 2.5rem;
        padding: 0 1.5rem;
    }
    

    
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
}

/* VPS Type Cards */
.vps-type-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.vps-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vps-type-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

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

.vps-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vps-type-icon i {
    font-size: 2rem;
    color: white;
}

.vps-type-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.vps-type-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.vps-type-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.vps-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.vps-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--dark-text);
}

.feature-highlight {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 1rem;
}

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

.feature-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--light-text);
}

.vps-type-footer {
    text-align: center;
    margin-top: auto;
}

.starting-price {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.starting-price .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Comparison Cards */
.comparison-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    color: var(--dark-text);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comparison-icon i {
    font-size: 2rem;
    color: white;
}

.comparison-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.performance-bars {
    margin-top: 2rem;
}

.performance-bar {
    margin-bottom: 1.5rem;
    position: relative;
}

.performance-bar span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.bar {
    height: 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

.fill.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.support-comparison {
    margin-top: 3rem;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    color: var(--dark-text);
}

.support-item.premium {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--primary-color);
}

/* Technical Specs Table */
.specs-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.specs-table thead {
    background: transparent;
}

.specs-table thead th {
    padding: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
}

.specs-table tbody td {
    padding: 1rem;
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
}

.specs-table tbody tr:hover td {
    background: rgba(99, 102, 241, 0.1);
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.deployment-instant {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-purchase {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-purchase:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Custom Plan Info */
.custom-plan-info {
    text-align: center;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
}

.custom-plan-info p {
    color: var(--light-text);
    margin: 0;
    font-size: 1rem;
}

.custom-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: var(--secondary-color);
}



/* VPS Configuration Styles */
.config-section {
    margin-bottom: 4rem;
}

.config-title {
    color: var(--dark-text);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.config-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Service Type Grid */
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-type-card {
    background: var(--dark-surface);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.service-type-card.active {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

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

.service-header h3 {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.memory-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.memory-badge.ddr4 {
    background: linear-gradient(135deg, #059669, #10b981);
}

.memory-badge.ddr5 {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.memory-badge.sale {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.memory-badge.rdp {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.service-description {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-pricing {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Region Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.region-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-surface);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-card:hover:not(.disabled) {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.region-card.active {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.region-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--dark-bg);
}

.region-flag img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.region-info h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.region-status {
    font-size: 0.85rem;
    font-weight: 500;
}

.region-status.available {
    color: var(--success-color);
}

.region-status.unavailable {
    color: var(--danger-color);
}

.region-datacenter {
    display: block;
    color: var(--light-text);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Plans Table */
.plans-table-container {
    background: var(--dark-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.plans-table thead {
    background: rgba(99, 102, 241, 0.1);
}

.plans-table thead th {
    padding: 1rem;
    text-align: left;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.plans-table tbody td {
    padding: 1rem;
    color: var(--dark-text);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.plans-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.plans-table tbody tr:last-child td {
    border-bottom: none;
}

.deployment-instant {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-purchase {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-purchase:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Promo Badge */
.promo-badge {
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    to {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    }
}

/* Responsive Design for VPS Configuration */
@media (max-width: 768px) {
    .service-type-grid {
        grid-template-columns: 1fr;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-table-container {
        overflow-x: auto;
    }
    
    .plans-table {
        min-width: 600px;
    }
    
    .config-title {
        font-size: 1.5rem;
    }
    
    .promo-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .service-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .memory-badge {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .config-section {
        margin-bottom: 3rem;
    }
    
    .service-type-card,
    .region-card {
        padding: 1rem;
    }
    
    .plans-table thead th,
    .plans-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .btn-purchase {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

.memory-badge.intel {
    background: linear-gradient(135deg, #0071c5, #1f8dd6);
}

/* Feature Cards */
.feature-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Best Seller Badge */
.plan-badge {
    background: #dc2626;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.plan-badge.bestseller {
    background: #dc2626;
    color: white;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 40px 0;
    background: var(--dark-surface);
}

.coming-soon-preview {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 260px;
    margin: 0 auto;
}

.coming-soon-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.coming-soon-preview:hover::before {
    left: 100%;
}

.coming-soon-preview:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.preview-icon i {
    font-size: 1.5rem;
    color: white;
}

.preview-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.preview-content h4 {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.preview-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.preview-price {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preview-badge {
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
        transform: scale(1.02);
    }
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 30px 0;
    }
    
    .coming-soon-preview {
        margin-bottom: 1rem;
        padding: 1rem;
        max-width: 220px;
    }
    
    .preview-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .preview-icon i {
        font-size: 1.25rem;
    }
    
    .preview-content h4 {
        font-size: 1.1rem;
    }
    
    .preview-content p {
        font-size: 0.85rem;
    }
    
    .preview-price {
        font-size: 0.9rem;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
}

/* Go to Top Button */
.go-to-top-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    animation: fadeInUp 0.8s ease-out;
}

.go-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse-top 2s infinite;
}

.go-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.go-top-btn i {
    font-size: 20px;
    animation: bounce-up 1.5s infinite;
}

/* Go to Top Animations */
@keyframes pulse-top {
    0% {
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }
}

@keyframes bounce-up {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* WhatsApp Live Chat Button */
.whatsapp-chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: fadeInUp 0.8s ease-out;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    min-width: 180px;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 24px;
    animation: bounce 1.5s infinite;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.chat-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.support-text {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .go-to-top-button {
        bottom: 20px;
        left: 20px;
    }
    
    .go-top-btn {
        width: 50px;
        height: 50px;
    }
    
    .go-top-btn i {
        font-size: 18px;
    }
    
    .whatsapp-chat-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        min-width: 160px;
        padding: 10px 16px;
    }
    
    .whatsapp-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .whatsapp-icon i {
        font-size: 20px;
    }
    
    .chat-text {
        font-size: 14px;
    }
    
    .support-text {
        font-size: 11px;
    }
} 