/* Goji Labs Exact Match Theme */
:root {
    --primary: #5B21B6; /* Deep Purple Accent */
    --primary-dark: #4C1D95;
    --dark: #0A0A0A;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --gray: #666666;
    --border: #E5E5E5;
}

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

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Clash Display', sans-serif;
    letter-spacing: -0.01em;
}

/* Minimalist Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.navbar-brand img {
    height: 45px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.navbar-brand span {
    color: var(--dark) !important;
    font-weight: 600;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 20px;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.btn-solid-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-solid-dark:hover {
    background: #000;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--light);
}

/* Hero Section (Side by Side) */
.hero {
    position: relative;
    padding: 160px 0 80px;
    background-color: var(--white);
    overflow: hidden;
}

.hero .row {
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.hero-dot {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

.hero-graphic-container {
    position: relative;
    padding: 2rem;
}

.hero-graphic-bg {
    position: absolute;
    top: 10%;
    right: 0;
    width: 90%;
    height: 90%;
    background: #FCEAEA;
    transform: rotate(5deg);
    z-index: 0;
    border-radius: 8px;
}

/* ─── Live Screen Animation ─── */
.live-screen {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: #1E1E2E;
}

.screen-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.screen-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.screen-window {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Window Chrome Bar */
.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #181825;
    border-bottom: 1px solid #313244;
}
.dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #F38BA8; }
.dot.yellow { background: #F9E2AF; }
.dot.green { background: #A6E3A1; }
.window-title {
    margin-left: 12px;
    font-size: 0.75rem;
    color: #6C7086;
    font-family: 'Switzer', monospace;
}

/* ─── Code Editor Screen ─── */
.window-body {
    flex: 1;
    overflow: hidden;
    height: 100%;
}
.code-editor {
    display: flex;
    padding: 16px 0;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    background: #1E1E2E;
    height: 100%;
}
.line-numbers {
    padding: 0 12px 0 16px;
    text-align: right;
    color: #45475A;
    user-select: none;
    min-width: 38px;
    white-space: pre;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
}
.code-content {
    margin: 0;
    padding: 0 16px;
    color: #CDD6F4;
    white-space: pre;
    overflow: hidden;
}
/* Syntax Highlights */
.code-content .kw { color: #CBA6F7; }
.code-content .fn { color: #89B4FA; }
.code-content .str { color: #A6E3A1; }
.code-content .cm { color: #585B70; font-style: italic; }
.code-content .num { color: #FAB387; }
.code-content .op { color: #89DCEB; }
.code-content .pr { color: #F38BA8; }
.code-content .cursor-blink {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #CDD6F4;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 1px;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* ─── Dashboard Screen ─── */
.dashboard-body {
    background: #1E1E2E;
    padding: 20px;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.dash-label {
    color: #CDD6F4;
    font-weight: 600;
    font-size: 1rem;
}
.dash-period {
    color: #6C7086;
    font-size: 0.75rem;
    background: #313244;
    padding: 4px 10px;
    border-radius: 4px;
}
.dash-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.dash-stat {
    flex: 1;
    background: #313244;
    padding: 12px 14px;
    border-radius: 8px;
}
.dash-stat-value {
    display: block;
    color: #A6E3A1;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Clash Display', sans-serif;
}
.dash-stat-label {
    display: block;
    color: #6C7086;
    font-size: 0.7rem;
    margin-top: 4px;
}
.chart-area {
    background: #181825;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 14px;
}
.chart-area canvas {
    width: 100% !important;
    height: 140px !important;
}
.dash-bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 60px;
}
.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
}

/* ─── Chat Screen ─── */
.chat-body {
    background: #1E1E2E;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    min-height: 340px;
}
.chat-date {
    text-align: center;
    font-size: 0.7rem;
    color: #6C7086;
    background: #313244;
    width: fit-content;
    margin: 0 auto 16px;
    padding: 3px 14px;
    border-radius: 12px;
}
.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}
.chat-bubble {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    animation: bubbleIn 0.4s ease forwards;
}
@keyframes bubbleIn {
    to { opacity: 1; transform: translateY(0); }
}
.chat-bubble.sent {
    align-self: flex-end;
    background: #5B21B6;
    color: #fff;
    border-bottom-right-radius: 4px;
}
.chat-bubble.received {
    align-self: flex-start;
    background: #313244;
    color: #CDD6F4;
    border-bottom-left-radius: 4px;
}
.chat-bubble .time-stamp {
    display: block;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    text-align: right;
    margin-top: 4px;
}
.chat-input-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #313244;
}
.chat-avatars {
    display: flex;
    gap: 6px;
}
.chat-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}
.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}
.typing-indicator span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6C7086;
    animation: typingBounce 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* ─── Our Work Section ─── */
.work-section {
    padding: 100px 0 60px;
    background-color: var(--white);
}

/* Work Card — Shared */
.work-card {
    padding: 0;
    margin-bottom: 0;
}

.work-card-inner {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
}

.work-card-img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

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

.work-card:hover .work-card-img img {
    transform: scale(1.03);
}

.work-card-text {
    flex: 0 0 50%;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.work-logo-icon {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-card-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.work-card-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Dark Card */
.work-card-dark {
    background: #0A0A0A;
    padding: 2rem 0;
}

.work-card-dark .work-card-inner {
    background: #0A0A0A;
}

.work-card-dark .work-logo-icon {
    color: #fff;
}

.work-card-dark .work-card-title {
    color: #fff;
}

.work-card-dark .work-card-desc {
    color: #A0A0A0;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    width: fit-content;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* Light Card */
.work-card-light {
    background: var(--white);
    padding: 2rem 0;
}

.work-card-light .work-card-inner {
    background: var(--light);
}

.work-card-light .work-logo-icon {
    color: var(--dark);
}

.work-card-light .work-card-title {
    color: var(--dark);
}

.work-card-light .work-card-desc {
    color: var(--gray);
}

/* Stats Row */
.work-stats-row {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}

.work-stats-grid {
    display: flex;
    gap: 0;
}

.work-stat {
    flex: 1;
    padding: 1rem 2rem;
    border-right: 1px solid var(--border);
}

.work-stat:last-child {
    border-right: none;
}

.work-stat-arrow {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 8px;
}

.work-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Clash Display', sans-serif;
}

.work-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

.product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .work-card-inner {
        flex-direction: column !important;
        min-height: auto;
    }
    .work-card-img {
        min-height: 280px;
    }
    .work-card-text {
        padding: 2rem 1.5rem;
    }
    .work-stats-grid {
        flex-direction: column;
    }
    .work-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.2rem 0;
    }
    .work-stat:last-child {
        border-bottom: none;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

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

.section-heading-left {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.services-container {
    position: relative;
}

.service-row {
    position: relative;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    background: transparent;
}

.service-row:first-child {
    border-top: 1px solid var(--border);
}

.service-content-default {
    display: flex;
    padding: 5rem 0;
    transition: opacity 0.3s ease;
}

.service-title {
    flex: 0 0 40%;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    padding-right: 2rem;
    line-height: 1.2;
}

.service-desc {
    flex: 0 0 60%;
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.6;
}

.service-content-hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0A0A0A;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-hover-text {
    flex: 0 0 50%;
}

.service-hover-text .service-title {
    color: var(--white);
}

.service-hover-text .service-desc {
    color: #A0A0A0;
}

.service-hover-graphic {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-hover-graphic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

/* Hover Interactivity */
.service-row:hover .service-content-default {
    opacity: 0;
}

.service-row:hover .service-content-hover {
    opacity: 1;
    visibility: visible;
}

/* Tech Stack Section */
.tech-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.tech-heading {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.tech-desc {
    font-size: 1.15rem;
    color: #A0A0A0;
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tech-item:hover {
    opacity: 1;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.tech-name {
    font-size: 0.9rem;
    color: #A0A0A0;
}

/* Footer CTA */
.footer-cta {
    background: var(--light);
    color: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 40px;
    color: var(--gray);
    border-top: 1px solid var(--border);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #a1a1a6;
}

@media (max-width: 991px) {
    .product-text-panel, .product-img-panel {
        flex: 0 0 100%;
    }
    .product-img-panel {
        min-height: 300px;
    }
    .service-row {
        flex-direction: column;
    }
    .service-title {
        margin-bottom: 1rem;
    }
    .hero-title, .section-heading-left, .tech-heading {
        font-size: 2.8rem;
    }
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════ */

/* Services Page Hero */
.svc-page-hero {
    padding: 180px 0 100px;
    background: var(--white);
    position: relative;
}

.svc-page-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 2px;
}

.svc-page-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.svc-page-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 540px;
}

.svc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--dark);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.svc-hero-stat {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #333;
    padding: 0 1rem;
}

.svc-hero-stat:last-child {
    border-right: none;
}

.svc-hero-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Clash Display', sans-serif;
}

.svc-hero-stat-label {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

/* Core Services Grid */
.svc-core-section {
    padding: 100px 0;
    background: var(--light);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: transparent;
    transition: background 0.4s ease;
}

.svc-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(91, 33, 182, 0.08);
}

.svc-card:hover::before {
    background: var(--primary);
}

.svc-card-featured {
    background: var(--dark);
    border-color: var(--dark);
}

.svc-card-featured .svc-card-number,
.svc-card-featured .svc-card-title {
    color: #fff;
}

.svc-card-featured .svc-card-desc {
    color: #A0A0A0;
}

.svc-card-featured .svc-card-icon {
    color: var(--primary);
    background: rgba(91, 33, 182, 0.15);
}

.svc-card-featured .svc-card-list li {
    color: #A0A0A0;
}

.svc-card-featured .svc-card-list li::before {
    color: var(--primary);
}

.svc-card-featured:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.svc-card-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Clash Display', sans-serif;
}

.svc-card-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--light);
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.svc-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.svc-card-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.svc-card-list li {
    font-size: 0.88rem;
    color: var(--gray);
    padding: 6px 0;
    border-top: 1px solid var(--border);
}

.svc-card-list li::before {
    content: '→';
    color: var(--dark);
    margin-right: 10px;
    font-weight: 600;
}

/* Process Section */
.svc-process-section {
    padding: 120px 0;
    background: var(--white);
}

.svc-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.svc-process-step:first-child {
    border-top: 1px solid var(--border);
}

.svc-process-step:hover {
    padding-left: 1rem;
}

.svc-step-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Clash Display', sans-serif;
    min-width: 40px;
    padding-top: 2px;
}

.svc-step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.svc-step-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Industries Section */
.svc-industries-section {
    padding: 120px 0;
    background: var(--dark);
    color: #fff;
}

.svc-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.svc-industry-card {
    background: #181825;
    border: 1px solid #313244;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.svc-industry-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.svc-industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: block;
}

.svc-industry-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

.svc-industry-card p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Services Page Responsive */
@media (max-width: 991px) {
    .svc-page-title {
        font-size: 2.8rem;
    }
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-hero-stats {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
    .svc-industries-grid {
        grid-template-columns: 1fr;
    }
    .svc-hero-stats {
        grid-template-columns: 1fr;
    }
    .svc-hero-stat {
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 1rem 0;
    }
    .svc-hero-stat:last-child {
        border-bottom: none;
    }
}

/* ═══════════════════════════════════════════
   WORK PAGE
   ═══════════════════════════════════════════ */

/* Work Page Hero */
.work-page-hero {
    padding: 180px 0 60px;
    background: var(--light);
}

.work-page-counter {
    display: inline-flex;
    flex-direction: column;
    text-align: right;
    padding-left: 2rem;
    border-left: 2px solid var(--primary);
}

.work-page-counter-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Clash Display', sans-serif;
    line-height: 1;
}

.work-page-counter-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* Filter Tags */
.work-filter-section {
    background: var(--light);
    padding-bottom: 60px;
}

.work-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.work-filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.work-filter-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

/* Work Card Features List */
.work-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.work-card-features li {
    font-size: 0.9rem;
    color: #A0A0A0;
    position: relative;
    padding-left: 20px;
}

.work-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary);
    font-weight: bold;
}

.work-card-features-dark li {
    color: var(--gray);
}

/* Work Showcase wrapper */
.work-showcase {
    padding-top: 40px;
    background: var(--white);
}

/* CTA */
.work-page-cta {
    padding: 120px 0;
    background: var(--light);
}

@media (max-width: 991px) {
    .work-page-counter {
        text-align: left;
        margin-top: 2rem;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 2px solid var(--primary);
    }
    .work-card-features {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   COMPANY PAGE
   ═══════════════════════════════════════════ */

/* Company Hero */
.company-page-hero {
    padding: 180px 0 100px;
    background: var(--light);
}

.company-story-section {
    padding: 120px 0;
    background: var(--white);
}

.company-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-values-section {
    padding: 100px 0 120px;
    background: var(--light);
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(91, 33, 182, 0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

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

.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

.contact-page-hero {
    padding: 180px 0 120px;
    background: var(--light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-info-block {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(91, 33, 182, 0.1);
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(91, 33, 182, 0.1);
}

@media (max-width: 991px) {
    .contact-page-hero {
        padding-top: 150px;
    }
    .contact-form-card {
        padding: 2rem;
    }
}

/* ═══════════════════════════════════════════
   PREMIUM PROJECT DETAILS (CASE STUDY)
   ═══════════════════════════════════════════ */

/* Case Study Hero */
.cs-hero {
    padding: 180px 0 80px;
    background: var(--light);
}

.cs-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(91, 33, 182, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cs-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Clash Display', sans-serif;
}

.cs-subtitle {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.5;
    font-weight: 400;
    max-width: 800px;
}

/* Meta Data Grid */
.cs-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.cs-meta-item h6 {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cs-meta-item p {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* Featured Image */
.cs-featured-img-wrap {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.cs-featured-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: block;
}

/* Content Sections */
.cs-section {
    padding: 120px 0;
    background: var(--white);
}

.cs-section-alt {
    background: var(--light);
}

.cs-heading {
    font-size: 2.5rem;
    font-family: 'Clash Display', sans-serif;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.cs-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Tech Stack Tags */
.cs-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cs-tech-tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Feature Grid */
.cs-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.cs-feature-box {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.cs-feature-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.cs-feature-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Quote Section */
.cs-quote-section {
    background: var(--dark);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.cs-quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 30px;
    line-height: 1;
}

.cs-quote-text {
    font-size: 2.5rem;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cs-quote-author {
    font-size: 1.1rem;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Grid */
.cs-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cs-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .cs-title { font-size: 3rem; }
    .cs-meta-grid { grid-template-columns: 1fr; gap: 20px; }
    .cs-feature-grid, .cs-gallery { grid-template-columns: 1fr; }
    .cs-quote-text { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════ */

.footer {
    padding: 100px 0 30px;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    font-family: 'Switzer', sans-serif;
}

.footer-logo {
    max-height: 45px;
    margin-bottom: 20px;
}

.footer p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 1rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.copyright {
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVENESS FIXES
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Headings & Text */
    .hero-title, .svc-page-title, .cs-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    .hero-subtitle, .svc-page-subtitle, .cs-subtitle {
        font-size: 1.1rem !important;
    }
    .section-heading-left {
        font-size: 2rem;
    }

    /* Padding & Spacing */
    .hero-section, .contact-page-hero, .company-page-hero, .cs-hero {
        padding: 120px 0 60px !important;
        text-align: center;
    }
    .work-section, .services-section, .py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Grid & Layout Adjustments */
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-info-block {
        text-align: left;
    }
    
    .contact-form-card {
        margin-top: 40px;
        padding: 30px 20px;
    }

    /* Footer Adjustments */
    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    .footer .col-md-6 {
        margin-bottom: 40px;
    }
    .footer-heading {
        margin-bottom: 15px;
    }
    .copyright {
        margin-top: 20px;
        padding-top: 20px;
    }
}
