:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --color-primary: #0f172a;
    --color-secondary: #64748b;
    --color-accent: #3b82f6;
    --color-success: #10b981;
    --color-light: #f8fafc;
    --color-border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    color: var(--color-primary) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: #3b82f6 !important;
}

.nav-link.active {
    color: #3b82f6 !important;
    font-weight: 600;
}

.nav-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--color-secondary);
    padding: 0.375rem 0.75rem;
    background: #f0fdf4;
    border-radius: 20px;
    margin-right: 1rem;
}

.nav-availability .status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.navbar .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
}

.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.dropdown-menu {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 0.5rem;
    color: #3b82f6;
}

.dropdown-divider {
    margin: 0.5rem 0;
}

.btn-primary {
    background: #3b82f6;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-outline-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hero-pricing-hint {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-pricing-hint span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-primary);
}

.hero-pricing-hint span:not(:last-child)::after {
    content: '•';
    margin-left: 1rem;
    color: var(--color-secondary);
}

.hero-pricing-hint i {
    color: var(--color-success);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tech-badge i {
    font-size: 1.25rem;
}

.tech-badge.angular i {
    color: #dd0031;
}

.tech-badge.dotnet i {
    color: #512bd4;
}

.tech-badge.aws i {
    color: #ff9900;
}

section {
    padding: 5rem 0;
}

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

.section-title h2 {
    margin-bottom: 1rem;
}

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

.service-card {
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

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

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.service-deliverables {
    flex-grow: 1;
}

.service-deliverables h6 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-deliverables ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-deliverables li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-secondary);
}

.service-deliverables li i {
    color: var(--color-success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-outcome {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-outcome::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    font-size: 3rem;
    color: #3b82f6;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.service-outcome p {
    margin: 0;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-secondary);
    margin: 0;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-primary);
}

.credential-badge i {
    color: var(--color-success);
    font-size: 1.125rem;
}

footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0 2rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }

    .hero-pricing-hint {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-pricing-hint span:not(:last-child)::after {
        display: none;
    }

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

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.8125rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .tech-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }

    .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .hero-section::before,
    .hero-section::after {
        width: 300px;
        height: 300px;
    }
}


/* For/Not For Section */
.for-card,
.not-for-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.for-card {
    border-left: 5px solid #10b981;
}

.not-for-card {
    border-left: 5px solid #ef4444;
}

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

.for-card h3 {
    color: #10b981;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.not-for-card h3 {
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.for-card li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.not-for-card li::before {
    content: "✗";
    color: #ef4444;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.for-card li,
.not-for-card li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.best-for-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #495057;
    border-left: 4px solid #667eea;
}

.badge-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-left: 2rem;
    flex: 1;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #667eea;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
    font-size: 1.05rem;
}



/* CTA Section */
.cta-section {
    background: var(--dark-gradient);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: white;
    color: #203a43;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8fafc;
    color: #203a43;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Social Proof Section */
.social-proof-section {
    background: white;
    padding: 5rem 0;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9375rem;
}

.region-badge i {
    color: #3b82f6;
    font-size: 1.125rem;
}

.testimonial-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    color: var(--color-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--color-primary);
    font-weight: 700;
}

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

.proof-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.proof-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-stat-label {
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced Most Popular Card */
.service-card.most-popular {
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
    position: relative;
    z-index: 1;
}

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

.service-card.most-popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.service-card.most-popular .service-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
    }
}

@media (max-width: 991px) {
    .service-card.most-popular {
        transform: scale(1);
    }

    .service-card.most-popular:hover {
        transform: translateY(-8px);
    }
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.0625rem;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3b82f6;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-secondary);
    line-height: 1.7;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    color: white;
}

.floating-cta-btn i {
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .floating-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Alternate Section Backgrounds using nth-of-type */
section:nth-of-type(odd):not(.cta-section) {
    background: white;
}

section:nth-of-type(even):not(.cta-section) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}