/* BrainyTech - Services Section Styles */
/* Tabbed showcase format for services */

/* Section Headers */
.sectionHeader {
    margin-bottom: 60px;
}

.sectionHeader.centered {
    text-align: center;
}

.sectionBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(59, 130, 246, 0.12));
    border: 1px solid rgba(30, 58, 138, 0.35);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .sectionBadge {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.25));
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.sectionTitle {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-top: 16px;
    margin-bottom: 16px;
}

[data-theme="dark"] .sectionTitle {
    color: #f1f5f9;
}

.gradientText {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .gradientText {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sectionDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 600px;
}

[data-theme="dark"] .sectionDescription {
    color: #cbd5e1;
}

.sectionHeader.centered .sectionDescription {
    margin: 0 auto;
}

/* Services Tabs Navigation */
.servicesTabsNav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 48px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid var(--color-border);
}

[data-theme="dark"] .servicesTabsNav {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.9), rgba(7, 15, 32, 0.95));
    border: 1px solid rgba(30, 58, 138, 0.35);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(5px);
}

.serviceTab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.serviceTab:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

[data-theme="dark"] .serviceTab:hover {
    background: rgba(124, 58, 237, 0.1);
}

.serviceTab.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.15));
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

[data-theme="dark"] .serviceTab.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.25));
    border-color: #a78bfa;
}

.serviceTabIcon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 10px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .serviceTabIcon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    color: #a78bfa;
}

.serviceTab.active .serviceTabIcon {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.serviceTabIcon svg {
    width: 20px;
    height: 20px;
}

.serviceTabLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

[data-theme="dark"] .serviceTabLabel {
    color: #cbd5e1;
}

.serviceTab.active .serviceTabLabel {
    color: var(--color-text);
    font-weight: 700;
}

[data-theme="dark"] .serviceTab.active .serviceTabLabel {
    color: #f1f5f9;
}

.serviceTabBadge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Showcase Container */
.servicesShowcaseContainer {
    position: relative;
    min-height: 400px;
}

.serviceShowcase {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.serviceShowcase.active {
    display: block;
    opacity: 1;
}

.serviceShowcaseGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 24px;
}

[data-theme="dark"] .serviceShowcaseGrid {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.85), rgba(7, 15, 32, 0.9));
    border: 1px solid rgba(30, 58, 138, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(59, 130, 246, 0.12),
        0 0 40px rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(8px);
}

/* Showcase Content */
.serviceShowcaseContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.serviceShowcaseIcon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

[data-theme="dark"] .serviceShowcaseIcon {
    background: linear-gradient(135deg, #a78bfa, #22d3ee);
}

.serviceShowcaseIcon svg {
    width: 36px;
    height: 36px;
}

.serviceShowcaseTitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

[data-theme="dark"] .serviceShowcaseTitle {
    color: #f1f5f9;
}

.serviceShowcaseDescription {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .serviceShowcaseDescription {
    color: #cbd5e1;
}

.serviceShowcaseTech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.serviceTechBadge {
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .serviceTechBadge {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(167, 139, 250, 0.4);
    color: #a78bfa;
}

.serviceTechBadge:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Showcase Visual */
.serviceShowcaseVisual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.serviceVisualCard {
    width: 100%;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

[data-theme="dark"] .serviceVisualCard {
    background: linear-gradient(135deg, rgba(7, 15, 32, 0.9), rgba(14, 31, 64, 0.85));
    border: 1px solid rgba(30, 58, 138, 0.35);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(5px);
}

/* Code Window Visual */
.codeWindow {
    font-family: 'Monaco', 'Courier New', monospace;
}

.codeHeader {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

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

.codeDot.red { background: #ff5f56; }
.codeDot.yellow { background: #ffbd2e; }
.codeDot.green { background: #27c93f; }

.codeLines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.codeLine {
    font-size: 14px;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .codeLine {
    color: #cbd5e1;
}

.code-keyword { color: #c792ea; font-weight: 600; }
.code-function { color: #82aaff; }
.code-string { color: #c3e88d; }

/* Workflow Diagram Visual */
.workflowDiagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workflowNode {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    font-size: 28px;
    animation: nodeFloat 3s ease-in-out infinite;
}

[data-theme="dark"] .workflowNode {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(167, 139, 250, 0.4);
}

.workflowNode:nth-child(2) { animation-delay: 0.5s; }
.workflowNode:nth-child(4) { animation-delay: 1s; }

.workflowArrow {
    font-size: 24px;
    color: var(--color-primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

[data-theme="dark"] .workflowArrow {
    color: #a78bfa;
}

/* Cloud Stack Visual */
.cloudStack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cloudLayer {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    animation: layerSlide 3s ease-in-out infinite;
}

[data-theme="dark"] .cloudLayer {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(167, 139, 250, 0.4);
    color: #f1f5f9;
}

.cloudLayer:nth-child(2) { animation-delay: 0.5s; }
.cloudLayer:nth-child(3) { animation-delay: 1s; }

/* Data Chart Visual */
.dataChart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    height: 150px;
}

.chartBar {
    flex: 1;
    background: linear-gradient(to top, #7c3aed, #06b6d4);
    border-radius: 8px;
    animation: barGrow 2s ease-in-out infinite;
}

[data-theme="dark"] .chartBar {
    background: linear-gradient(to top, #a78bfa, #22d3ee);
}

.chartBar:nth-child(2) { animation-delay: 0.3s; }
.chartBar:nth-child(3) { animation-delay: 0.6s; }
.chartBar:nth-child(4) { animation-delay: 0.9s; }

/* Design Frames Visual */
.designFrames {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.designFrame {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    font-size: 36px;
    animation: frameFloat 3s ease-in-out infinite;
}

[data-theme="dark"] .designFrame {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(167, 139, 250, 0.4);
}

.designFrame:nth-child(2) { animation-delay: 0.5s; }
.designFrame:nth-child(3) { animation-delay: 1s; }

/* API Endpoints Visual */
.apiEndpoints {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apiEndpoint {
    padding: 16px 20px;
    background: rgba(124, 58, 237, 0.1);
    border-left: 4px solid #7c3aed;
    border-radius: 8px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    animation: endpointPulse 3s ease-in-out infinite;
}

[data-theme="dark"] .apiEndpoint {
    background: rgba(124, 58, 237, 0.15);
    border-left-color: #a78bfa;
    color: #f1f5f9;
}

.apiEndpoint:nth-child(2) { animation-delay: 0.5s; }
.apiEndpoint:nth-child(3) { animation-delay: 1s; }

/* Animations */
@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

@keyframes layerSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.1); }
}

@keyframes frameFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes endpointPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
    50% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
}

/* Products Section */
.productsSection {
    padding: 80px 0;
}

.productsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.productCard {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .productCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.8), rgba(7, 15, 32, 0.85));
    border: 1px solid rgba(30, 58, 138, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(8px);
}

.productCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.2);
    border-color: var(--color-primary);
}

.productBadge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.productIconWrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    border-radius: 16px;
    margin-bottom: 24px;
}

.productIcon {
    width: 32px;
    height: 32px;
    color: white;
}

.productTitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .productTitle {
    color: #f1f5f9;
}

.productDescription {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

[data-theme="dark"] .productDescription {
    color: #cbd5e1;
}

.productActions {
    margin-top: auto;
    padding-top: 20px;
}

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

.btnSecondary {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

[data-theme="dark"] .btnSecondary {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.7), rgba(7, 15, 32, 0.75));
    border: 1px solid rgba(30, 58, 138, 0.35);
    color: #f1f5f9;
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.btnSecondary:hover {
    background: rgba(92, 23, 243, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(92, 23, 243, 0.2);
}

[data-theme="dark"] .btnSecondary:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: #a78bfa;
}

.btnFull {
    width: 100%;
    justify-content: center;
}

.btnSecondary svg {
    width: 16px;
    height: 16px;
}

/* Contact Section */
.contactSection {
    padding: 80px 0;
}

.contactFormWrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contactForm {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 24px;
    padding: 48px;
}

[data-theme="dark"] .contactForm {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.85), rgba(7, 15, 32, 0.9));
    border: 1px solid rgba(30, 58, 138, 0.35);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(59, 130, 246, 0.12),
        0 0 40px rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(8px);
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.formGroup {
    margin-bottom: 24px;
}

.formLabel {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

[data-theme="dark"] .formLabel {
    color: #f1f5f9;
}

.formInput,
.formTextarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-size: 15px;
    color: var(--color-text);
    transition: all 0.3s ease;
    font-family: inherit;
}

[data-theme="dark"] .formInput,
[data-theme="dark"] .formTextarea {
    background: rgba(7, 15, 32, 0.8);
    color: #f1f5f9;
    border: 1px solid rgba(30, 58, 138, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.formInput:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(92, 23, 243, 0.1);
}

[data-theme="dark"] .formInput:focus,
[data-theme="dark"] .formTextarea:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.formInput::placeholder,
.formTextarea::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.6;
}

[data-theme="dark"] .formInput::placeholder,
[data-theme="dark"] .formTextarea::placeholder {
    color: #94a3b8;
}

.formTextarea {
    resize: vertical;
    min-height: 120px;
}

.formActions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btnPrimary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .btnPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnLarge {
    padding: 16px 40px;
    font-size: 16px;
}

.btnPrimary svg {
    width: 20px;
    height: 20px;
}

/* Contact Success State */
.contactSuccess {
    text-align: center;
    padding: 60px 40px;
}

.successIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.successIcon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.successTitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .successTitle {
    color: #f1f5f9;
}

.successMessage {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="dark"] .successMessage {
    color: #cbd5e1;
}

/* Form Help Text */
.formHelpText {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-secondary);
    opacity: 0.8;
}

[data-theme="dark"] .formHelpText {
    color: #94a3b8;
}

/* Why Choose Section */
.whyChooseSection {
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .servicesTabsNav {
        grid-template-columns: repeat(3, 1fr);
    }

    .serviceShowcaseGrid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .productsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .servicesTabsNav {
        grid-template-columns: repeat(2, 1fr);
    }

    .serviceTab {
        padding: 16px 12px;
    }

    .serviceTabLabel {
        font-size: 11px;
    }

    .serviceShowcaseGrid {
        padding: 24px;
    }

    .serviceShowcaseTitle {
        font-size: 24px;
    }

    .serviceShowcaseIcon {
        width: 56px;
        height: 56px;
    }

    .serviceShowcaseIcon svg {
        width: 28px;
        height: 28px;
    }

    .productsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .productCard {
        padding: 24px;
    }

    .contactForm {
        padding: 32px 24px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
