/* ===== CSS Variables ===== */
:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-dark: #020617;
    --electric: #2563eb;
    --electric-hover: #1d4ed8;
    --accent: #60a5fa;
    --surface-alt: #f8fafc;
    --border-color: #e2e8f0;
    --text-muted: #64748b;
}

/* ===== Global Styles ===== */
body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Utility Classes ===== */
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.bg-surface-alt { background-color: var(--surface-alt) !important; }
.bg-electric { background-color: var(--electric) !important; }
.text-navy { color: var(--navy) !important; }
.text-electric { color: var(--electric) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* ===== Brand Icon ===== */
.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--electric);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.brand-icon i {
    color: white;
    font-size: 1.1rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* ===== Navbar ===== */
#mainNav {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

#mainNav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Buttons ===== */
.btn-electric {
    background: var(--electric);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.btn-electric:hover {
    background: var(--electric-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-electric-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-outline-light-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-navy {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-navy:hover {
    background: var(--navy-light);
    color: white;
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
}

/* ===== Breadcrumbs ===== */
.breadcrumb-nav {
    background: var(--navy);
    padding: 12px 0;
    margin-top: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--electric);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-muted);
    padding: 0 8px;
}

.breadcrumb-nav .breadcrumb-item a i {
    font-size: 0.9rem;
}

/* Adjust page-hero when breadcrumbs are present */
.breadcrumb-nav + .page-hero {
    padding-top: 100px;
}

.page-hero {
    padding: 180px 0 100px;
    position: relative;
}

.page-hero .hero-bg {
    background-position: center 30%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--electric);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

.hero-title .text-electric {
    color: var(--electric);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ===== Section Styles ===== */
.section-label {
    color: var(--electric);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* Higher contrast for section-label on dark backgrounds */
.bg-navy .section-label {
    color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== Cards ===== */
.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(59, 130, 246, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--electric);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Process Steps ===== */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 2px;
    background: linear-gradient(90deg, var(--electric), rgba(59, 130, 246, 0.3));
    display: none;
}

@media (min-width: 992px) {
    .process-timeline::before {
        display: block;
    }
}

.process-step {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--electric);
}

.process-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--electric);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--electric);
}

.process-icon i {
    font-size: 1.75rem;
    color: var(--electric);
    transition: color 0.3s ease;
}

.process-step:hover .process-icon i {
    color: white;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Portfolio Cards ===== */
.portfolio-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

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

.portfolio-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.2), transparent);
}

.portfolio-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.portfolio-card-content {
    padding: 1.5rem;
}

.portfolio-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-card-content h3 {
    color: var(--electric);
}

.portfolio-card-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.portfolio-tag {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--electric);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

/* ===== Filter Buttons ===== */
.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--electric);
    color: var(--electric);
}

.filter-btn.active {
    background: var(--electric);
    border-color: var(--electric);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

/* ===== Reason List ===== */
.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.reason-item i {
    color: var(--electric);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.reason-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* ===== Contact Cards ===== */
.contact-info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--electric);
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.contact-info-value {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.contact-info-value a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value a:hover {
    color: var(--electric);
}

.contact-info-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Call CTA Card ===== */
.call-cta-card {
    background: var(--electric);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.call-cta-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.call-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.call-cta-card .btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.call-cta-card .btn:hover {
    background: var(--navy-light);
}

/* ===== Contact Form ===== */
.contact-form-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.form-label .text-electric {
    color: var(--electric);
}

.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* ===== Skills Cards ===== */
.skill-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.skill-card-header .indicator {
    width: 4px;
    height: 24px;
    background: var(--electric);
    border-radius: 2px;
}

.skill-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
}

.skill-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(51, 65, 85, 0.8);
    margin-bottom: 0.75rem;
}

.skill-card ul li:last-child {
    margin-bottom: 0;
}

.skill-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--electric);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ===== Value Cards ===== */
.value-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.value-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-card-icon i {
    color: var(--electric);
    font-size: 1rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Tech Tags ===== */
.tech-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
}

/* ===== CTA Sections ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
}

.cta-section-alt {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
}

/* ===== Success State ===== */
.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.success-icon i {
    font-size: 2rem;
    color: var(--electric);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
}

.footer-link {
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===== Sticky Filter ===== */
.sticky-filter {
    position: sticky;
    top: 72px;
    z-index: 30;
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border-color);
}

/* ===== Service Detail Card ===== */
.service-detail-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: rgba(59, 130, 246, 0.2);
}

.service-detail-icon i {
    font-size: 1.75rem;
    color: var(--electric);
}

.service-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric);
    font-weight: 600;
}

.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-detail-card > p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(51, 65, 85, 0.8);
    margin-bottom: 0.5rem;
}

.service-detail-card ul li:last-child {
    margin-bottom: 0;
}

.service-detail-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--electric);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Industry Link Cards ===== */
.industry-link-card {
    display: block;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--electric);
}

.industry-link-card i {
    font-size: 2rem;
    color: var(--electric);
    margin-bottom: 1rem;
    display: block;
}

.industry-link-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.industry-link-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.industry-link-card:hover h3 {
    color: var(--electric);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--navy);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }
}

/* ===== Client Logos ===== */
.client-logos {
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border-color);
}

.letter-spacing {
    letter-spacing: 0.1em;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    flex: 0 0 auto;
}

.client-logo-placeholder {
    width: 120px;
    height: 50px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
    border-color: var(--electric);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.logo-item img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-featured {
    border-color: var(--electric);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.testimonial-featured::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: var(--electric);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--electric), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    display: block;
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial-role {
    display: block;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ===== Satisfaction Guarantee Badge ===== */
.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    background: var(--electric);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

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

.guarantee-badge strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guarantee-badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== Featured Project Cards ===== */
.featured-project-card {
    display: block;
    text-decoration: none;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.featured-project-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

.featured-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.featured-project-card:hover .featured-project-img img {
    transform: scale(1.05);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-project-card:hover .featured-project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    background: var(--electric);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.featured-project-card:hover .view-project {
    transform: translateY(0);
}

.featured-project-content {
    padding: 1.25rem;
}

.project-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--electric);
    margin-bottom: 0.5rem;
}

.featured-project-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
    transition: color 0.2s ease;
}

.featured-project-card:hover .featured-project-content h3 {
    color: var(--electric);
}

.featured-project-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sticky-cta .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .mobile-sticky-cta {
        display: block;
    }

    /* Add bottom padding to footer to account for sticky CTA */
    .footer {
        padding-bottom: 5rem;
    }
}

/* ===== Availability Pulse ===== */
.availability-pulse {
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== Pricing Cards ===== */
.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border: 2px solid var(--electric);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.pricing-amount {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.pricing-from {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.pricing-card-featured .pricing-price {
    color: var(--electric);
}

.pricing-monthly {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.pricing-features li i {
    color: var(--electric);
    font-size: 1rem;
    flex-shrink: 0;
}

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

.btn-outline-electric:hover {
    background: var(--electric);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

/* ===== Testimonial Metrics ===== */
.testimonial-metric {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.metric-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--electric);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Trust Bar ===== */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--electric);
}

@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== FAQ Accordion ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--electric);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1rem;
    color: var(--electric);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-question:hover span {
    color: var(--electric);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--navy);
}

/* ===== Half Star ===== */
.bi-star-half {
    color: #fbbf24;
}

/* ===== Backend Development Section ===== */
.backend-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.backend-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.backend-feature-item:hover {
    border-color: var(--electric);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.backend-feature-item i {
    font-size: 1.25rem;
    color: var(--electric);
    margin-top: 0.125rem;
}

.backend-feature-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.backend-feature-item span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Backend Showcase Card */
.backend-showcase {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .backend-showcase {
        padding-left: 0;
    }
}

.showcase-card {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.showcase-header {
    background: var(--navy-dark);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.showcase-dot:first-child {
    background: #ff5f57;
}

.showcase-dot:nth-child(2) {
    background: #ffbd2e;
}

.showcase-dot:nth-child(3) {
    background: #28c840;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-project {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.showcase-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-icon i {
    font-size: 1.25rem;
    color: var(--electric);
}

.showcase-project h3,
.showcase-project h4,
.showcase-project .h5 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-project p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.showcase-tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.showcase-tags span {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.showcase-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.25rem 0;
}

/* ===== Comparison Table ===== */
.comparison-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--navy);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.comparison-header .comparison-feature {
    visibility: hidden;
}

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

.comparison-label {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.comparison-steony .comparison-label {
    color: var(--accent);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

.comparison-row-total {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
}

.comparison-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

.comparison-feature i {
    font-size: 1.125rem;
    color: var(--electric);
    width: 24px;
    text-align: center;
}

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

.comparison-value small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.comparison-value i {
    font-size: 1.25rem;
}

/* Comparison Table Mobile */
@media (max-width: 767.98px) {
    .comparison-header {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }

    .comparison-feature {
        margin-bottom: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px dashed var(--border-color);
    }

    .comparison-value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 0.5rem 0;
    }

    .comparison-value::before {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-muted);
    }

    .comparison-diy.comparison-value::before {
        content: "DIY:";
    }

    .comparison-steony.comparison-value::before {
        content: "Steony:";
    }

    .comparison-value small {
        display: none;
    }
}
