/*
 * Allintellect — strefa: tlumaczenia
 *
 * Źródło: autorski CSS podstron allintellect.pl. Usunięte @import fontów
 * (ładowane przez wp_enqueue_style), ścieżki obrazów wskazują na motyw.
 */

/* Scoping all styles to only affect elements within .translation-hero-section */
        body {
            margin: 0;
            font-family: 'Comfortaa', sans-serif;
        }
        
        .translation-hero-section {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .translation-hero-section .hero {
            position: relative;
            background: url('../img/AdobeStock_580501648-Przekonwertowany-scaled.webp') no-repeat center center/cover;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .translation-hero-section .hero-content {
            width: 100%;
            max-width: 1200px;
            position: relative;
            z-index: 2;
            padding: 30px;
            border-radius: 15px;
            /* Using a gradient background instead of semi-transparent overlay */
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
            /* Glass effect */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
        }

        .translation-hero-section .logo-container {
            margin-bottom: 10px; /* Standard small spacing */
            position: relative;
            z-index: 3;
        }

        .translation-hero-section .logo {
            width: 525px; /* Keeping the larger size */
            display: block;
            margin: 0 auto; /* Center the logo */
            transform: scale(0.1); /* Start small */
            transition: transform 0.8s ease, filter 0.5s ease;
            transition-delay: 0s, 0.8s; /* Delay the color change until after zoom */
            filter: brightness(1); /* Start with original color */
        }

        .translation-hero-section .logo.active {
            transform: scale(1); /* Zoom to full size */
            filter: brightness(10); /* Change to white after zoom completes */
        }

        .translation-hero-section h1 {
            font-size: 2.2rem;
            margin: 0 0 30px 0;
            position: relative;
            z-index: 2;
            line-height: 1.2;
            padding: 0;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: 1s; /* Start after logo zoom is mostly complete */
            color: white;
            font-family: 'Comfortaa', sans-serif;
            font-weight: 700;
        }

        .translation-hero-section h1.active {
            opacity: 1;
            transform: translateY(0);
        }

        .translation-hero-section .buttons {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: 1.3s; /* Start shortly after the text appears */
        }

        .translation-hero-section .buttons.active {
            opacity: 1;
            transform: translateY(0);
        }

        .translation-hero-section .buttons .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 10px;
            font-size: 1.1rem;
            color: white;
            text-decoration: none;
            background: rgba(255, 69, 0, 0.9);
            border-radius: 6px;
            transition: all 0.3s;
            font-family: 'Comfortaa', sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .translation-hero-section .buttons .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .translation-hero-section .buttons .btn:hover:before {
            left: 100%;
        }

        .translation-hero-section .buttons .btn.secondary {
            background: rgba(51, 51, 51, 0.9);
        }

        .translation-hero-section .buttons .btn:hover {
            background: rgba(51, 51, 51, 1);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .translation-hero-section .buttons .btn.secondary:hover {
            background: rgba(255, 69, 0, 1);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .translation-hero-section .hero-content {
                padding: 30px 20px;
                margin: 0 15px;
            }

            .translation-hero-section .logo {
                width: 350px;
            }

            .translation-hero-section h1 {
                font-size: 1.8rem;
            }

            .translation-hero-section .buttons .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .translation-hero-section .logo {
                width: 280px;
            }

            .translation-hero-section h1 {
                font-size: 1.5rem;
            }

            .translation-hero-section .buttons .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin: 5px;
            }
        }

:root {
      --orange-bright: #ff5500;
      --orange-primary: #ff4400;
      --red-deep: #cc2200;
      --red-darker: #aa1100;
      --navy-accent: #283593;
      --white: #ffffff;
      --light-gray: #f5f5f7;
      --text-gray: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: var(--font-main) !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: var(--font-main) !important;
    }

    body {
      background-color: var(--white);
      color: var(--navy-dark);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .header {
      background: linear-gradient(135deg, #ff5500 0%, #ff4400 25%, #cc2200 60%, #aa1100 85%, #283593 100%);
      color: var(--white);
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .header::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: radial-gradient(circle at 30% 100%, rgba(255, 85, 0, 0.25) 0%, transparent 50%),
                  radial-gradient(circle at 70% 0%, rgba(204, 34, 0, 0.2) 0%, transparent 50%);
      z-index: 0;
    }

    .header-content {
      position: relative;
      z-index: 1;
    }

    .intro-title {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
      animation: fadeIn 0.8s;
    }

    .intro-subtitle {
      font-size: clamp(18px, 3vw, 24px);
      color: var(--white);
      opacity: 0.95;
      font-weight: 500;
      margin-bottom: 16px;
      animation: fadeIn 0.9s;
    }

    .intro-text {
      font-size: clamp(16px, 2vw, 18px);
      max-width: 900px;
      margin: var(--spacing-base) auto 0;
      color: var(--white);
      font-weight: 400;
      animation: fadeIn 1s;
      padding: 0 var(--spacing-base);
    }

    .content-section {
      padding: calc(var(--spacing-base) * 4) var(--spacing-base);
      max-width: 1200px;
      margin: 0 auto;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: calc(var(--spacing-base) * 2);
      margin-top: calc(var(--spacing-base) * 1);
    }

    .secondary-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: calc(var(--spacing-base) * 2);
      margin-top: calc(var(--spacing-base) * 3);
    }

    .intro-card {
      background: var(--light-gray);
      padding: calc(var(--spacing-base) * 2);
      border-radius: var(--card-radius);
      text-align: left;
      transition: all 0.3s ease;
      animation: fadeInUp 0.8s forwards;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border-top: 5px solid transparent;
      background-image: linear-gradient(#f5f5f7, #f5f5f7),
                        linear-gradient(90deg, #ff5500 0%, #ff4400 30%, #cc2200 70%, #aa1100 95%, #283593 100%);
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }

    .intro-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 68, 0, 0.25);
    }

    .intro-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .intro-card:nth-child(2) {
      animation-delay: 0.3s;
    }

    .intro-card:nth-child(3) {
      animation-delay: 0.5s;
    }

    .intro-card h3 {
      font-size: 24px;
      background: linear-gradient(45deg, #ff5500, #cc2200, #aa1100);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .intro-card p {
      color: var(--text-gray);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .intro-icon {
      display: none;
    }

    .service-list {
      list-style: none;
      margin-top: 12px;
    }

    .service-list li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 68, 0, 0.15);
      color: var(--red-deep);
      transition: color 0.3s ease;
    }

    .service-list li:hover {
      color: var(--orange-primary);
    }

    .service-list li:last-child {
      border-bottom: none;
    }

    strong {
      color: var(--red-darker);
      font-weight: 700;
    }

    .footer-section {
      background: linear-gradient(90deg, #ff5500 0%, #ff4400 20%, #cc2200 60%, #aa1100 90%, #283593 100%);
      padding: calc(var(--spacing-base) * 2);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .footer-text {
      font-size: 20px;
      color: var(--white);
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

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

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .secondary-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .header, .content-section {
        padding: calc(var(--spacing-base) * 2) var(--spacing-base);
      }
      
      .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-base);
      }
      
      .intro-card {
        padding: calc(var(--spacing-base) * 1.2);
      }
    }

:root {
      --orange-bright: #ff5500;
      --orange-primary: #ff4400;
      --red-deep: #cc2200;
      --red-darker: #aa1100;
      --navy-accent: #283593;
      --white: #ffffff;
      --light-gray: #f5f5f7;
      --text-gray: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
    }
    
    html, body, h1, h2, h3, h4, h5, h6, p, a, span, div {
      font-family: var(--font-main) !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: var(--font-main) !important;
    }

    body {
      background-color: var(--white);
      color: var(--red-darker);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 600;
      background: linear-gradient(45deg, #ff5500, #cc2200, #aa1100);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      letter-spacing: -0.003em;
      line-height: 1.2;
      margin-bottom: 30px;
    }

    /* Language Banner */
    .language-banner {
      background: linear-gradient(135deg, #ff5500 0%, #ff4400 25%, #cc2200 60%, #aa1100 85%, #283593 100%);
      color: var(--white);
      padding: calc(var(--spacing-base) * 1.5);
      border-radius: var(--card-radius);
      margin-bottom: calc(var(--spacing-base) * 3);
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 30px rgba(255, 68, 0, 0.15);
    }

    .language-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 100%, rgba(255, 85, 0, 0.25) 0%, transparent 50%),
                  radial-gradient(circle at 70% 0%, rgba(204, 34, 0, 0.2) 0%, transparent 50%);
      pointer-events: none;
    }

    .banner-title {
      font-size: 24px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      z-index: 2;
      color: var(--white);
    }

    .language-scroller {
      display: flex;
      overflow: hidden;
      position: relative;
      height: 60px;
      z-index: 2;
    }

    .language-slider {
      display: flex;
      position: absolute;
      white-space: nowrap;
      animation: slideLanguages 35s linear infinite;
      width: max-content;
      transform: translateX(0);
    }

    .language-item {
      font-size: 22px;
      font-weight: 500;
      padding: 0 30px;
      display: flex;
      align-items: center;
      color: var(--white);
      opacity: 0.95;
    }

    @keyframes slideLanguages {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Process Container */
    .process-container {
      background: var(--light-gray);
      border-radius: var(--card-radius);
      padding: calc(var(--spacing-base) * 2);
      margin-bottom: calc(var(--spacing-base) * 2);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 68, 0, 0.08);
    }

    .process-title {
      font-size: 28px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 40px;
      background: linear-gradient(45deg, #ff5500, #cc2200, #aa1100);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .process-step {
      background: var(--white);
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid transparent;
      background-image: linear-gradient(#fff, #fff),
                        linear-gradient(180deg, #ff5500 0%, #ff4400 30%, #cc2200 70%, #aa1100 100%);
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }

    .process-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(255, 68, 0, 0.2);
    }

    .step-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .step-number {
      font-size: 28px;
      font-weight: 700;
      background: linear-gradient(135deg, #ff5500, #cc2200);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-right: 15px;
    }

    .step-name {
      font-size: 20px;
      font-weight: 600;
      color: var(--red-deep);
    }

    .step-description {
      font-size: 16px;
      color: var(--text-gray);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .section-container {
        padding: calc(var(--spacing-base) * 1.5) var(--spacing-base);
      }
      
      .process-steps {
        grid-template-columns: 1fr;
      }
    }

:root {
      --orange-primary: #ff4400;
      --red-deep: #cc2200;
      --white: #ffffff;
      --light-gray: #f5f5f7;
      --text-gray: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      background-color: var(--white);
      color: var(--text-gray);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 600;
      color: var(--white);
      background-color: var(--orange-primary);
      text-align: center;
      letter-spacing: -0.003em;
      line-height: 1.2;
      margin-bottom: 30px;
      padding: 15px 0;
      border-radius: var(--card-radius);
    }

    .pricing-container {
      background: var(--light-gray);
      border-radius: var(--card-radius);
      padding: calc(var(--spacing-base) * 2);
      margin-bottom: calc(var(--spacing-base) * 2);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .price-notes {
      background: var(--white);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 30px;
      border-left: 4px solid var(--orange-primary);
    }

    .price-notes-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--orange-primary);
      margin-bottom: 15px;
      position: relative;
      padding-left: 25px;
    }

    .price-notes-title::before {
      content: "ℹ️";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .price-notes ul {
      list-style: none;
    }

    .price-notes li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .price-notes li::before {
      content: "•";
      position: absolute;
      left: 10px;
      color: var(--orange-primary);
      font-weight: bold;
    }

    .price-notes strong {
      color: var(--red-deep);
      font-weight: 600;
    }

    .pricing-table-wrapper {
      overflow-x: auto;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .pricing-table thead th {
      background-color: var(--orange-primary);
      color: var(--white);
      font-weight: 600;
      padding: 15px 20px;
      text-align: left;
      font-size: 18px;
    }

    .pricing-table thead th:last-child {
      text-align: center;
    }

    .pricing-table tbody tr {
      background-color: var(--white);
    }

    .pricing-table tbody tr:nth-child(even) {
      background-color: #fef9f3;
    }

    .pricing-table tbody tr:hover {
      background-color: #ffe6d6;
    }

    .pricing-table td {
      padding: 12px 20px;
      border-bottom: 1px solid #ffe0cc;
      font-size: 16px;
      color: var(--text-gray);
    }

    .pricing-table td:last-child {
      font-weight: 600;
      text-align: center;
      color: var(--red-deep);
    }

    .category-header td {
      background-color: var(--red-deep) !important;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 17px;
      color: var(--white) !important;
    }

    @media (max-width: 768px) {
      .section-container {
        padding: calc(var(--spacing-base) * 1.5) var(--spacing-base);
      }
      
      .pricing-table thead th, 
      .pricing-table td {
        padding: 12px 15px;
        font-size: 14px;
      }
      
      .pricing-table td:first-child {
        padding-right: 5px;
      }
    }

:root {
      --orange-bright: #ff5500;
      --orange-primary: #ff4400;
      --red-deep: #cc2200;
      --red-darker: #aa1100;
      --navy-accent: #283593;
      --white: #ffffff;
      --light-gray: #f5f5f7;
      --text-gray: #6e6e73;
      --font-main: 'Comfortaa', sans-serif;
      --spacing-base: 20px;
      --card-radius: 16px;
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: var(--font-main) !important;
    }

    body {
      background-color: var(--white);
      color: var(--red-darker);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 3) var(--spacing-base);
    }

    .career-section {
      display: flex;
      align-items: center;
      background: var(--light-gray);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .career-content {
      flex: 1;
      padding: calc(var(--spacing-base) * 2);
    }

    .career-image {
      flex: 1;
      max-width: 50%;
    }

    .career-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .career-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 600;
      background: linear-gradient(45deg, #ff5500, #cc2200, #aa1100);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .career-subtitle {
      font-size: 20px;
      color: var(--red-deep);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .career-description {
      color: var(--text-gray);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .career-requirements-title {
      font-size: 18px;
      color: var(--orange-primary);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .career-requirements {
      list-style: none;
      margin-bottom: 20px;
    }

    .career-requirements li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .career-requirements li::before {
      content: "•";
      position: absolute;
      left: 10px;
      color: var(--orange-primary);
      font-weight: bold;
    }

    .career-contact {
      font-weight: 600;
      background: linear-gradient(45deg, #ff5500, #cc2200);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @media (max-width: 768px) {
      .career-section {
        flex-direction: column;
      }

      .career-image {
        max-width: 100%;
      }

      .career-content {
        padding: var(--spacing-base);
      }

      .career-title {
        font-size: 24px;
      }

      .career-subtitle {
        font-size: 18px;
      }
    }